Forum Replies Created
-
Author
-
RaduModerator
Hi,
Please look in quick css for this
COPY CODE@media (max-width: 990px) div#header { position: fixed; width: 100%; z-index: 99 !important; height: 100px; }
Instead of 100px put your desired height/
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorOk i understand,
For matching only that separator, you will have to set a class for that row section, please follow this how to video : https://drive.google.com/file/d/0Bxo5b6iHWRMwV0xlbERGdTdjb2M/view
Then you will have to apply this css, with the name of the custom class (in this case class name is companysection1 ) of the row before the initial css like this :
COPY CODE.companysection1 .vertical-separator { border-left: 1px solid #111111 !important; } .companysection1 .vertical-separator:after,.vertical-separator:before { background-color:yellow; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You can do that with this css
COPY CODE.vertical-separator { border-left: 1px solid #111111 !important; } .vertical-separator:after,.vertical-separator:before { background-color:yellow; }
Replace #111111 and yellow with your desired colors.
The css can be added to wp-admin -> theme options -> general settings -> quick css
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 23, 2016 at 18:46 in reply to: I can’t import the demo content (for example home sensei) #112401RaduModeratorHi,
What error do you receive ?
Try to make a php.ini file into your root wordpress installation in that you will paste this
COPY CODEmax_execution_time = 60 memory_limit = 256M post_max_size = 64M upload_max_filesize = 64M
If nothing happens contact your hosting provide and ask them tell that you want to have these settings.
Similar topic : https://archived.seventhqueen.com/forums/topic/install-troubles
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 23, 2016 at 17:05 in reply to: Multi Select Boxes + CheckBoxes Display in Forms without Scroll Bar #112385RaduModeratorHi,
Add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE.btn-group.open ul.multiselect-container.dropdown-menu { overflow-y: auto; height:auto !important; max-height:230px; width:100%!important; }
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Replace the css that i have provided to you with this
COPY CODE.img#logo_img { margin-top: 20px !important; } .header-scrolled img#logo_img { margin-top: 0 !important; }
The text can be changed by using loco translate plugin https://wordpress.org/plugins/loco-translate/
You will need to go to the plugin dashboard and in Kleo section add new language, choose your language, and if you are asked where you want to save the language files choose global language directory ( wp-content/languages/ ) then press SYNC button then search for that string and translate it and press save.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Please use this CSS code
COPY CODE.vc_column-inner { border: 0 !important; } .main-color .masonry-listing .post-content { border: 0; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
For the logo use this css
COPY CODE.img#logo_img { margin-top: 20px; } .header-scrolled img#logo_img { margin-top: 0; }
For the revolution slider images follow this :
https://drive.google.com/file/d/0Bxo5b6iHWRMwNG84ME41S21KQ00/view
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Paste this into wp-admin -> theme options -> general settings -> quick css
This css will show centered images inline
COPY CODEsection.container-wrap.home_box_wrap.main-color.border-bottom .section-container.container .wpb_column.vc_column_container.vc_col-sm-2 { width: 20% !important; }
Tell me whats is the second issue
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Sorry for misunderstanding
First, please update the theme to latest version 4.0.4 and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.
If this is useless please enable wp debug by going to ftp in root directory of your wp install open wp-config.php look for define( ‘WP_DEBUG’, false ); and change it to true and after this line add this
COPY CODEdefine( 'WP_DEBUG_LOG', true );
WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the described actions and then check the debug.log file and let me know what error appears.
If this is useless please try to deactivate additional plugins except Visual Composer,K-elements,buddypress,paid memberships pro and revolution slider.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
The captcha is for user registration spam protection not for login… but if you really want to implement this you will should add this function to wp-content/themes/buddyapp-child/functions.php
COPY CODEfunction add_captcha_under_login_form() { if( function_exists( 'gglcptch_display') ) { echo gglcptch_display(); } } add_action('kleo_after_login_form', 'add_captcha_under_login_form');
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 21, 2016 at 18:21 in reply to: Can I add a caption to the featured image at the top of the post? #112015RaduModeratorHi,
I will provide you a solution for start, for advanced customization you will have to hire a developer.
Upload the attached file (content.php) after you will unzip it to wp-content/themes/kleo-child/
NOTE : The child theme should be installed and activated
Add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODEbody.single-post .article-media { position: relative; } .kleo-excerpt_over_featured_image { position: absolute; padding: 50px 100px; font-weight: bold; font-size: 1.3em; line-height: 1.5em; color: #FFF; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.RaduModeratorHi,
You will have to go to wp-admin -> pages -> your home page then you should look for a similar code where is mentioned testimonials and replace 4 with your desired number
COPY CODE[kleo_posts_carousel cat="all" limit="6" post_types="testimonials"]
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
That’s because these videos has another video ratio format try to tweak with this css
COPY CODE.news-focus article .article-media iframe { height: 95% !important; }
The css can be added to wp-admin -> theme options -> general settings -> quick css
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Start from this css, css can be added to wp-admin -> theme options -> general settings -> quick css
COPY CODE#buddypress div.item-list-tabs#subnav ul li a {border-bottom-color: #ddd; font-family:"Roboto Condensed"; font-size:1.3em; } #buddypress div.item-list-tabs#subnav ul li.selected a, #buddypress div.item-list-tabs#subnav ul li a:hover { border-bottom-color: #00b9f7; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 21, 2016 at 16:33 in reply to: How to change the live chat text background bubble to each user? #111976RaduModeratorHi,
Use these css-s and replace with your desired colors
COPY CODE.wcContainer .wcMessages .wcMessage .wcMessageContent { background-color:green !important; } .wcContainer .wcMessages .wcMessage.wcCurrentUserMessage .wcMessageContent { background-color:red !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 21, 2016 at 15:38 in reply to: How to manage the activity feed – showing an event featured image inside the feed? #111971RaduModeratorHi
Regarding to
No we still need help with this – We would like “The event featured image” to be shown in the activity feed?
I see the event image is already displayed on activity
For the button hover color use this
COPY CODEli.events tbody tr td span.button a:hover { background-color: red !important; }
Replace red with your color
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi
Use this
COPY CODE@media (max-width: 991px) { .kleo-main-header, .navbar-transparent .kleo-main-header, .kleo-navbar-fixed.navbar-transparent #header { background-color: #222 !important; }}
It works for me via Inspect element
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi
COPY CODE.caroufredsel_wrapper article .entry-content hr { display: none !important; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 18, 2016 at 17:41 in reply to: Members can’t reply private message, accept friend request and upload profile photos #111573RaduModeratorThis reply has been set as private.RaduModeratorNope, i understand now, you want to edit
These texts ?
COPY CODELog in with your credentials Username Password SIGN IN Remember me Lost your password?
If yes you will have to use loco translate plugin https://wordpress.org/plugins/loco-translate/
You will need to go to the plugin dashboard and in Buddyapp section add new language, choose your language, and if you are asked where you want to save the language files choose global language directory ( wp-content/languages/ ) then search for that string and translate it.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Please add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODEul#activity-stream .activity-header p a.view.activity-time-since { display: none; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this css to wp-admin -> theme options – general settings -> quick css
COPY CODEbody .main-color .masonry-listing .post-footer, #header.main-color .navbar-nav li { display: none; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi
The wp-content is a folder located on your server and you should connect using a FTP client
For centering that 5 images on homepage add this css to wp-content/themes/kleo-child/style.css
COPY CODEsection.container-wrap.home_box_wrap.main-color.border-bottom .section-container.container .wpb_column.vc_column_container.vc_col-sm-2 { width: 20% !important; }
You can remove all borders from page by adding this css to wp-content/themes/kleo-child/style.css
COPY CODE.home section.container-wrap.main-color.border-bottom { border: 0; }
Take a look on youtube how to connect to server via FTP : https://www.youtube.com/results?search_query=connect+ftp+server+wordpress
Please consider that I’m trying to help and guide with your issues but please understand that we don’t offer advanced customisation through our forum or support tickets.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi
Use this
COPY CODE@media(max-width:700px){ #buddypress .activity-header p a:last-child { margin-right: 25% !important; } }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this css
COPY CODE.related-wrap .entry-summary { display: none !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
COPY CODE@media(max-width:600px){ #header .navbar { max-height: 80px; } }
replace 80px with your desired height
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorYou can apply this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE.footer-color { background: #1c1c1c !important; }
In this way it should be forced to remain black.
Try with this plugin : https://wordpress.org/plugins/welcome-email-editor/ and if this will not satisfy your needs, ask about the buddypress related thinks on their forum
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Upload the attached file after you will unzip it to wp-content/themes/kleo-child/page-parts/
Then look on line 24 for
COPY CODE<img src="https://cdn.seventhqueen.com/sq-support/wp-content/uploads/2013/06/sq-logo-black.png">
and replace with your image url
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.RaduModeratorUse this
COPY CODE@media (min-width:1600px) { .footer-color { background-position: center 25%; } }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorAdd this and then set margin-right for li’s 4 px
COPY CODE.kleo-shop-cols-5 li.product, .kleo-shop-5 li.product, .woocommerce.columns-5 li.product { width: 19.5%; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Use this
COPY CODE#buddypress .activity-list .activity-content .activity-inner, #buddypress .activity-list .activity-content blockquote { margin-top: 20px !important; }
Replace 20px with your desired value
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this css that will set the background color, replace #dadada color with your desired color
COPY CODE@media (max-width: 991px) { .kleo-main-header, .navbar-transparent .kleo-main-header, .kleo-navbar-fixed.navbar-transparent #header { background-color: #dadada; }}
Cheeers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorCOPY CODE@media (max-width: 600px){ #header .navbar-nav li a { padding: 5px 0; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Fist, please update the theme to latest version 4.0.3 and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.
If this is useless please enable wp debug by going to ftp in root directory of your wp install open wp-config.php look for define( ‘WP_DEBUG’, false ); and change it to true and after this line add this
COPY CODEdefine( 'WP_DEBUG_LOG', true );
WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the described actions and then check the debug.log file and let me know what error appears.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Yes remove this
COPY CODE#buddypress .activity-list .activity-content { margin: 0 0 0 100px !important; }
Then ad the end of the css file add this
COPY CODE#buddypress .activity-timeline {left:45px}
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Yes
Add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { margin-right: 0px !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorDo you have done this setting ?
Go to Wp-admin -> tools -> buddypress -> CHECK
Count friends for each user Count groups for each user Count total members Repair user “last activity” data
Then click -> Repair itemsIf this its no working add this function to wp-content/themes/sweetdate-child/
COPY CODEadd_action('bp_core_activated_user', 'kleo_add_member_activity'); function kleo_add_member_activity($user_id) { add_user_meta( $user_id, 'last_activity', date("Y-m-d H:i:s")); }
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
According the log
COPY CODE2016-03-15 20:25:04 Connection: opening to ssl://smtp.centurylink.net:25, timeout=300, options=array () 2016-03-15 20:25:05 SMTP ERROR: Failed to connect to server: Connection refused (111) 2016-03-15 20:25:05 SMTP connect() failed.
You cannot connect to server email, please contact the hosting provider and ask it about this.
Yes the issue with emails it’s related the activation emails.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
I’ve added this css in child theme style.css
COPY CODE.page-id-2792 #main-container .article-content p { font-family:'Merienda' !important; }
And the Merienda font is loaded via wp-admin-> theme options -> fonts -> h6
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts