Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Please check this attachment : https://drive.google.com/open?id=0Bxo5b6iHWRMwaXdaRDdQOExGN28
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 15, 2016 at 19:25 in reply to: How do I change the “from” name and email on the quick contact form? #129321Radu
ModeratorYou’re welcome
My colleague Laura will respond to you and maybe it will assign it to me
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorPlease tell me if this is happens on our demo ?
If not it’s possible that one of you used plugins to interfere with this or some change in child theme.
Let me know
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Use the attached archive, import the slider from wp-admin -> revolution slider -> import slider
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI’ve understand, in our demo this is not happens ?
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
All available sliders are included in main archive that you have downloaded from theme forest
– Go to WordPress Admin -> Revolution Slider -> Import Slider.
– Now you need to go into your PC and Browse to the Demo content folder, located in the package downloaded from Themeforest, and go to Revolution Slider folder.
– Choose the one of the .zip files and click Import Slider.Vertical separator css proprieties can be overwritten with this css.
Replace with your desired color and size, etc.. if you can to change only color change this line border-left: 1px solid #ff5e5e; from ff5e5e to another color code
COPY CODE/* Vertical separator */ .vertical-separator { border-left: 1px solid #ff5e5e; padding-left: 30px; position: relative; margin-left: 8px; } .vertical-separator:before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #ff5e5e; display: block; position: absolute; top: -15px; left: -3px; } The css can be added to wp-admin -> theme options -> general settings -> quick css Cheers R. .vertical-separator:after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #ff5e5e; display: block; position: absolute; bottom: -15px; left: -3px; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
When i use [kleo_search_form] shortcode and i press view all results i’m directed to a url like that : http://localhost/kleo/?s=video like in the demo… when you press view all results how the url looks ?Try to de-activate all plugins except visual composer and k-elements and try again…. also you can try to disable kleo child theme to test.
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
ModeratorThank you so much !
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 15, 2016 at 17:58 in reply to: How do I change the “from” name and email on the quick contact form? #129289Radu
ModeratorOk In this case install plugin and instead the method smtp use wp_mail but complete the from field
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 think this is not happens on our demo, please check and let me know if it’s happens also on our demo.
Try to de-activate child theme to see if that will disappears
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 15, 2016 at 17:32 in reply to: How do I change the “from” name and email on the quick contact form? #129279Radu
ModeratorHi,
You can choose the destination email from theme theme options -> layout settings -> to email.
And the name from can be changed with this plugin : https://wordpress.org/plugins/wp-mail-smtp/ install it and configure it with the requested details.
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,
By using this CSS
COPY CODE.kleo-main-header .nav.navbar-nav li a { font-weight: 900 !important; }The difference between regular and bold it’s small
The css will be added to wp-admin -> theme options -> general settings -> quick css
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re very welcome, please don’t forget to rate us 5 stars at themeforest if you have time and also will be useful for us and for rest of the users if you will leave a short review about the customer support service please 🙂
https://themeforest.net/item/kleo-next-level-wordpress-theme/reviews/6776630
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk
Good luck with these
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,
Add the attached file to wp-content/themes/kleo-child/ after you unzip it, the post meta should be rendered after featured image
NOTE : You should have Kleo Child theme installed and activated.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi,
Please add the attached file after you unzip it to wp-content/themes/kleo-child/page-parts/
Now it should displays latest posts there but there are displayed the posts that are in same category as the displayed post
NOTE : You should have Kleo Child theme 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,
Try this function instead
COPY CODEif ( ! function_exists( 'kleo_excerpt' ) ) { function kleo_excerpt( $limit = 80, $words = true ) { $excerpt_initial = get_the_excerpt(); if( $excerpt_initial == '' ){ $excerpt_initial = get_the_content(); } $excerpt_initial = preg_replace( '<code>\[[^\]]*\]</code>', '', $excerpt_initial ); $excerpt_initial = strip_tags( $excerpt_initial ); if ( $words ) { $excerpt = explode( ' ', $excerpt_initial, $limit ); if ( count( $excerpt ) >= $limit ) { array_pop( $excerpt ); $excerpt = implode( " ", $excerpt ) . '...'; } else { $excerpt = implode( " ", $excerpt ) . ''; } } else { $excerpt = $excerpt_initial; $excerpt = substr( $excerpt, 0, $limit ) . ( strlen( $excerpt ) > $limit ? '...' : '' ); } return '' . $excerpt . ' '; } }Replace 80 with your desired value
For the rest of the strings that you want to rename it/translate it use the next procedure :
Theme strings and plugins strings can easily be changed by using Loco Translate plugin https://wordpress.org/plugins/loco-translate/
A small introduction on how translations work
Translatable strings can come from the theme or from the installed plugins. You need to translate the theme or the plugin depending on what section of the site your string is found.
For example if your string is on your BuddyPress profile then most probably you will need to translate BuddyPress plugin. If you are on the Forums section of your site then bbPress plugin should be the one that needs to be translated. Another example is the rtMedia plugin that adds the Media links to BuddyPress and if you want to translate it then this plugin will contain the string.
Follow these steps to get you started:
- Install Loco Translate plugin
- Go to the plugin dashboard: WP Admin – Tools – Manage translations
- Find the theme or plugin in the list.
- If the language isn’t already in the list then click 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/ ).
- Press SYNC button to synchronise your translation with the provided .pot file
- Search for the string you want to translate and add your translated string.
- Press Save when you finished your translation.
Note: You will have to set the language for your blog from WP-admin – Settings – General – Site Language – Choose your language
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re very welcome, please don’t forget to rate us 5 stars at themeforest if you have time and also will be useful for us and for rest of the users if you will leave a short review about the customer support service.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI’ve read again your messages about the special features from the header, like user notifications, woocommerce cart content and so on and unfortunately making this to work in the way you like it would involve lots of customizations in the core of the theme.
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,
Theoretically you should paste the switch_to_blog(1); before menu to be rendered in this file template : wp-content/themes/kleo/page-parts/general-header-section.php you can copy this file in child wp-content/themes/kleo-child/page-parts/
And the rest
wp_nav_menu(‘main-navigation’);
restore_current_blog();
Somewhere at the bottom of the file
Let me know
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
GeoMyWp works nice with kleo but before you start your project you can do some test to be sure.
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 tell me in what page you should do that and provide a link to can figure out and to provide you correct file path
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,
Add this css to wp-admin -> theme options -> stilling options -> quick css
COPY CODE#header .top-bar ul > li a { padding:0 13px !important;}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