Forum Replies Created
-
Author
-
Radu
ModeratorHi,
All seems good excepting the CSS Rule
COPY CODEbody,a,b,h1,h2,h3,h4,h5,h5 { font-family : XMYekan !important; }The font family has a space between XM and Yekan so try like this
COPY CODEbody,a,b,h1,h2,h3,h4,h5,h5 { font-family : XM Yekan !important; }OR
COPY CODEbody,a,b,h1,h2,h3,h4,h5,h5 { font-family : XMYekanRegular !important; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I was able to change that see on this page: https://www.texashelps.com/testing-the-page-level-logo-change/
If you are using a MacBook make sure to add the logo in both fields LOGO and RETINA LOGO
This is how it looks

Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 12, 2017 at 15:05 in reply to: Live Notifications link disappears in Mobile Version, so no live notifications available in mobile #167144Radu
ModeratorHi,
Actually, we will have that in next theme update, that will be released in almost 1 week.
This is how will look :

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 12, 2017 at 14:44 in reply to: Live Notifications link disappears in Mobile Version, so no live notifications available in mobile #167142Radu
ModeratorHi,
There is no quick way to have the live messages outside the menu at this moment.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I isee,
There it’s an issue I’ve logged in via Facebook on your site but then I wasn’t able to log out because of the marked error, there its normal to have 403 on wp-login.php page width logout parameter, try to ask this on the hosting support cuz this isn’t related to KLEO theme.
Also you can to de-activate the plugins and to test again.

Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Replace the code with this one, sorry I’ve missed the action hook, sorry !
COPY CODEfunction blog_single_full_image_above_post() { if (is_single()) { if (has_post_thumbnail()) { echo '<div class="fullwidth-image-before-content">'; echo the_post_thumbnail('full'); echo '</div>'; } } } add_action('kleo_before_main', 'blog_single_full_image_above_post');Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
That isn’t possible since the kleo magic container it’s a div not a A element, I think the only reliable way it’s to set a custom CSS class for you magic container from example “mymagiccontainerclass” then with a JS code to target that class to open the link
COPY CODE<script> jQuery(document).ready(function () { jQuery(".mymagiccontainerclass").click( function () { window.location.href = "http://example.com"; } ); }); </script> The JS code wil be added to wp-admin -> theme options -> general settings -> JavaScript codeCheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Do you have the latest version of Sweetdate theme? If not update those
If you de-activate the child theme it works ?
Do you have the latest version of plugins installed? If not update those
If you de-activate all plugins it works? if yes enable back plugins one by one to identify what causes this.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please copy this file : /wp-content/themes/kleo/page-parts/post-content-small.php to /wp-content/themes/kleo-child/page-parts/
Then in the child theme edit the file and paste this content on in https://pastebin.com/raw/8Bcm8njk
That’s all, the full content will be displayed in the categories/archive
NOTE: Child theme needs to be installed and activated.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This it’s fixed, there was a host that your hosting seems blocks it: updates.seventhqueen.com and this it’s queried on every page load in admin to check and notify you about the new plugin version.
Now that check it happens only when you access the wp-admin -> appearance -> install plugins.
Also, this will be fixed in next theme update.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can use the next solution by adding the next code to wp-content/themes/kleo-child/functions.php
The code will allow users to register but immidiately after they finish registration users will be redirected and locked into the memebrship levels page until users buy or leave.
COPY CODEadd_action( 'template_redirect', 'my_membersip_restrict' ); function my_membersip_restrict() { global $pmpro_pages, $post; if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) { if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) { wp_redirect( pmpro_url() ); } } }The snippet will be pasted in wp-content/themes/kleo-child/functions.php
NOTE : The Kleo Child Theme needs to be installed and activated.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
That code will work only in pages where the contact form shortcode it’s placed like contact one, where the code doesn’t work?
Are you want to use this in combo with floating contact from the kleo theme ? or how ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just use this function
COPY CODEif ( ! function_exists( 'kleo_bp_member_dir_view_button' ) ): /** * Render view profile button on members directory */ function kleo_bp_member_dir_view_button() { ?> <a>" class="small button radius secondary"><i class="icon-angle-right"></i> </a> <?php } endif; add_action( 'bp_directory_members_item_last', 'kleo_bp_member_dir_view_button', 10 );NOTE : Child theme needs to be installed and activated.
The function needs to be pasted in wp-content/themes/sweetdate-child/functions.php
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The login credentials are incorrect, please let me know the correct ones.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just use the “Activity page” visual element from visual composer that generate this shortcode [kleo_bp_activity_page] this will generate exact the activity that you have it in buddypres profile, also you are able to post updates.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 11, 2017 at 15:51 in reply to: Change Testimonial Picture/Photo size on Testimonial page #167019Radu
ModeratorForgot to mention : The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 11, 2017 at 15:51 in reply to: Change Testimonial Picture/Photo size on Testimonial page #167018Radu
ModeratorHi,
I see
Use this CSS to limit the featured testimonial image
COPY CODE.kleo-testimonials .article-media img { max-width: 200px; text-align: center; margin: 0 auto; display: block; }It will look like this, you can change the 200px from max-width rule with your desired value.

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
There it’s something specific to make?
I cannot see the loading problem of dynamic.css
VIDEO : https://drive.google.com/file/d/0Bxo5b6iHWRMweW55emJYMUplcUE/view
Let me know if I should something specific.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I see my personal advice it’s to tell your developer to implement this kind of accordions (horizontal)
The responsible file that control the tabs it’s : /wp-content/themes/kleo/woocommerce/single-product/tabs/tabs.php
If you want to overwrite this just copy the file into wp-content/themes/kleo-child/single-product/tabs/
Note: child theme needs to be installed and activated
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I saw the facebook login behavior it’s somehow ODD, but using latest theme version on my localhost I’m able to log in without any problems in the browser and using iPhone.
So, I cannot provide you exact steps to follow cuz I’m not able to reproduce,
Can you please provide wp-admin credentials ( the current ones doesn’t work )? and also the FTP?
Best regards
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 10, 2017 at 19:58 in reply to: Visual Composer element “Image Gallery” does not work with external links #166957Radu
ModeratorHi,
You’re welcome
All should be fine! but let me know
If you are happy with our support service please leave us a review + 5* on themeforest please
Have a nice weekend
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 10, 2017 at 19:58 in reply to: Visual Composer element “Image Gallery” does not work with external links #166956Radu
ModeratorHi,
You’re welcome
All should be fine! but let me know
If you are happy with our support service please leave us a review + 5* on themeforest please
Have a nice weekend
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi
Just use this function and this will be added automatically immediately after the header ends in full-width mode
Example
COPY CODEfunction blog_single_full_image_above_post() { if (is_single()) { if (has_post_thumbnail()) { echo '<div class="fullwidth-image-before-content">'; echo the_post_thumbnail('full'); echo '</div>'; } } }The function needs to be pasted in wp-content/themes/kleo-child/functions.php
NOTE: Child theme needs to be installed and activated.
Also, i implemented this in the theme and in next theme version this option will be found under wp-admin -> theme options -> blog.
That’s all
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You haven’t mentioned that you encounter the issue from wp-admin backend
I can search for users in backend without problem on my local install using latest theme version

Where can I see this behavior ?! anyway the theme doesn’t have anything to to with wp backend in that way, I recommend you to try to de-activate plugins and child theme then chek again if it works it means one f the plugins or one of the changes from child theme causes that.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve tried but there is no only CSS to modify and also it requires to change a lot the header logic, there should be made changes in CSS and also in JS and it requires significant time to achieve that, then the modifications should be tested on different devices.
For the moment no quick solution for this if you really need to achieve this you should hire a developer to make this custom fo you
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You’re welcomeCheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
If I click login the KLEO login pop-up it’s displayed
Did you have solved meanwhile?

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The range option it’s available only for the age field and for the moment we don’t have a reliable quick solution for that, in future we will implement profile search like in KLEO theme where you are able to do that.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I saw that, as the first solution try to do the next
Do you have the latest version of Kleo theme? If not update those
Do you have the latest version of plugins installed? If not update those
If you de-activate all plugins it works? if yes enable back plugins one by one to identify what causes this.
If you de-activate the child theme it works?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 10, 2017 at 16:09 in reply to: Live Notifications link disappears in Mobile Version, so no live notifications available in mobile #166903Radu
ModeratorHi,
For the moment the only solution for that it’s to display all time the live notifications item
COPY CODEli.kleo-messages-nav.kleo-toggle-menu { display: block !important; }In future, we will take into consideration this and we will improve that
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
That’s wired cuz those are coming from rtMedia plugin and those should be translatable by default.
As a workaround, you can modify direct the code by adding default placeholders as you need.
Just copy this code: https://pastebin.com/raw/upX9rix0
The function needs to be pasted in wp-content/themes/sweetdate-child/functions.php
NOTE : Child theme needs to be installed and activated.

Just replace the strings from red rectangle areas
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
There is no option to can limit that, but you can try using this css
COPY CODE#rtmedia-uploader-form .rtm-plupload-list, form .rtmedia-container .rtm-plupload-list, #rtmedia_uploader_filelist { max-height: 200px !important; display: inline-block; }It will limit the height of the container of the images that uploading.
You can try to ask this on rt media maybe thy have some quick code to limit number of displaying those or to allow to be uploaded once.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts

