Forum Replies Created
-
Author
-
Radu
ModeratorHi
direct link : https://seventhqueen.com/public-files/radu/Home_statique__Rue_du_Coeur_2017-03-27_17-02-53.png
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou can decrease the image size on forums using this css
COPY CODE.forum article img.attachment-kleo-full-width { max-width: 100px; margin: 0 auto; text-align: center; }If you want to hide image use this CSS
COPY CODE.forum article img.attachment-kleo-full-width { display:none; }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,
In first instance please replace the content of this file : /Applications/XAMPP/htdocs/kleo/wp-content/themes/kleo/lib/theme-functions.php with this one : https://pastebin.com/raw/0DmHYS25
The HTML markup for the breadcrumbs it’s on this file: /wp-content/themes/kleo/lib/theme-functions.php

But it’s not recommended to modify in theme cuz on theme update the changes will gone , after you replace the file content add next function to child theme wp-content/themes/kleo-child/functions.php
COPY CODEif ( ! function_exists( 'kleo_title_section' ) ) { function kleo_title_section($args = false) { $defaults = array( 'title' => get_the_title(), 'show_title' => true, 'show_breadcrumb' => true, 'link' => '', 'output' => "<section class='{class} border-bottom'><div class='container'>{title_data}<div class='breadcrumb-extra'>{breadcrumb_data}{extra}</div></div></section>", 'class' => 'container-wrap main-title alternate-color ', 'extra' => '<p class="page-info">' . do_shortcode(sq_option('title_info', '')) . '</p>', 'heading' => 'h1' ); // Parse incoming $args into an array and merge it with $defaults $args = wp_parse_args($args, $defaults); $args = apply_filters('kleo_title_args', $args); // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before. extract($args, EXTR_SKIP); if (!empty($link)) { $title = "<a href='" . $link . "' rel='bookmark' title='" . __('Permanent Link:', 'kleo_framework') . " " . esc_attr($title) . "'>" . $title . "</a>"; } $breadcrumb_data = ''; if ($show_breadcrumb) { $breadcrumb_data = kleo_breadcrumb(array( 'show_browse' => false, 'separator' => ' ', 'show_home' => __('Home', 'kleo_framework'), 'echo' => false )); } $title_data = ''; if ($show_title) { $title_data = '<{heading} class="page-title">{title}</{heading}>'; } if (!$show_breadcrumb && $extra == '') { $class .= ' title-single'; } $title_layout = sq_option('title_layout', 'normal'); if (is_singular() && get_cfield('title_layout') && get_cfield('title_layout') != '') { $title_layout = get_cfield('title_layout'); } if ($title_layout == 'center') { $class .= ' main-center-title'; } elseif ($title_layout == 'right_breadcrumb') { $class .= ' main-right-breadcrumb'; } $output = str_replace('{title_data}', $title_data, $output); $output = str_replace('{class}', $class, $output); $output = str_replace('{title}', $title, $output); $output = str_replace('{breadcrumb_data}', $breadcrumb_data, $output); $output = str_replace('{extra}', $extra, $output); $output = str_replace('{heading}', $heading, $output); return $output; } }Now you can make the breadcrumb structure updateproof.
Where i can see a post with youtube video displayed twice ? URL + admin credentials in a private reply
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,
Check those : http://wordpress.stackexchange.com/a/98382
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,
Use this CSSCOPY CODE@media(max-width:991px) { div#header { position: fixed !important; width: 100%; z-index: 999; } }Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 30, 2017 at 15:45 in reply to: [ Solved + Solution ] Excerpt lenght in WordPress blog page #157219Radu
ModeratorHi,
Please replace all of that code with this one, the excerpt tag will work as it should
COPY CODEif ( ! function_exists( 'kleo_excerpt' ) ) { function kleo_excerpt( $limit = 50, $words = false ) { /*Force excerpt length*/ $limit = 500; $from_content = false; $excerpt_initial = get_the_excerpt(); if ( $excerpt_initial == '' ) { $excerpt_initial = get_the_content(); $from_content = true; } $excerpt_initial = preg_replace( '<code>\[[^\]]*\]</code>', '', $excerpt_initial ); $excerpt_initial = strip_tags( $excerpt_initial ); /* If we got it from get_the_content -> apply length restriction */ if ( $from_content ) { $excerpt_length = apply_filters( 'excerpt_length', $limit ); $excerpt_initial = wp_trim_words( $excerpt_initial, $excerpt_length, '' ); } if ( $words ) { $excerpt = explode( ' ', $excerpt_initial, $limit ); if ( count( $excerpt ) >= $limit ) { array_pop( $excerpt ); $excerpt = implode( " ", $excerpt ) . '...'; } else { $excerpt = implode( " ", $excerpt ) . ''; } } else { $excerpt = substr( $excerpt_initial, 0, $limit ) . ( strlen( $excerpt_initial ) > $limit ? '...' : '' ); } return '' . $excerpt . ' '; } } function kleo_new_excerpt_length( $length ) { return 500; } add_filter( 'excerpt_length', 'kleo_new_excerpt_length' );You can replace 500 value with your desired excerpt length

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 29, 2017 at 18:47 in reply to: Incorrect icons being shown for change cover photo and show more/less #157129Radu
ModeratorHI,
In this case I think you will have to re-upload the config file to fontello site and to re-check your desired icons using this procedure : https://archived.seventhqueen.com/kleo/article/use-custom-fontello-icons-kleo-theme
But before that backup child 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
ModeratorYou should see the page template in the wp-admin -> add new -> page template

But you should inspire from our existing tempaltes copy a page template from wp-content/themes/kleo/page-parts/ into wp-content/themes/kleo-child/page-parts/
You should be able to see the page template there
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,
TAke a look do you have solved?

Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve missed ; from the end
Copy again the code form here : https://pastebin.com/raw/PLh95nd7
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please create a file named general-popups.php in wp-content/themes/kleo-child/page-parts/
in that, you will paste the content of this file : https://pastebin.com/raw/dzJgM25Y
Let me know
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,
Try to add a number like 678
In the marked area

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 don’t know the cause for the contact form
Use this plugin : https://wordpress.org/plugins/remove-query-strings-from-static-resources/
If you are not ok with plugins search on google we cannto give you custom code for every your need also those are not theme related
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 press login with username and pass there instead of logging with facebook… press once on login with facebook and wait anyway… this is how a normal user will be logged in via facebook to your site
VIDEO : https://drive.google.com/file/d/0Bxo5b6iHWRMwYUVPa0tXV1hEZTg/view
So I cannot see any problem here
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,
Do you encounter this behaviour using default wp 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,
Please replace the code with this one
COPY CODEfunction overwrite_mebers_dir_meta() { $marital_status = bp_get_member_profile_data('field=Marital status'); $i_am_a = bp_get_member_profile_data('field=I am a'); $output['age'] = apply_filters('kleo_bp_meta_after_age', get_member_age(bp_get_member_user_id())); $output['marital_status'] = $marital_status; $output['i_am_a'] = $i_am_a; return $output; } add_filter('kleo_bp_meta_fields', 'overwrite_mebers_dir_meta');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,
You can remove that using this CSS
COPY CODEul#activity-stream li.load-more { display: none; }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 solutionMarch 29, 2017 at 15:52 in reply to: Demo Content for social marketplace / suggestions + Visual Composer Purchase Licence #157086Radu
ModeratorNot marked as solutionMarch 29, 2017 at 15:36 in reply to: Profile Navigation from Member and Group Profile get lost #157085Radu
ModeratorHi,
If you run multilanguage you should have this plugin installed : https://srd.wordpress.org/plugins/buddypress-multilingual/
This plugin can fix your issue if you using WPML.
Install, test it and 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,
Rt media image sizes can be adjusted from wp-admin -> rtmedia -> settings -> Media Sizes ->

IF the sizes that you set there are not applying you should regenerate those using this plugin: https://wordpress.org/plugins/force-regenerate-thumbnails/
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 activated deactivated plugins and child theme to test, but after I’ve debugged there the site was works as before but I don’t know what’s going on on your server when I access it now it looks like this:

I saw that you get problems from time in time so, I recommend you to hire a web developer to maintain your site as it should and to fix problems if something appears like this situation.
So our support service cannot include this kind of debugging, at this moment WordPress it’s not loaded also theme.
My advice it’s to ask to your hosting to restore your website files+database to a date when all works including matching system.
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
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 29, 2017 at 13:33 in reply to: Why do the audio previews not work with the news element? #157065Radu
ModeratorHi,
Mosr sure there should be made an intergration between the plugin and our shortcodes this cannot be by our support service because it’s require some dedicated time to acheive that.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 28, 2017 at 19:52 in reply to: GeoDirectory Location Bar messes up Revolution Slider layers layout #156971Radu
ModeratorHi,
1. I’ve typed something in header content from directory page but I’ve previewed page not saved, but I see now it’s fine.
2. Can you tell what word to search to see how it pushes the slider ?
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHI,
In this case I think you will have to re-upload the config file to fontello site and to re-check your desired icons using this procedure : https://archived.seventhqueen.com/kleo/article/use-custom-fontello-icons-kleo-theme
But before that backup child 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,
Most probabbly you will have to edit the contact page in backend and to create a new google map iframe code with your correct address and to replace code with the correct one with address in contact page backend.
Cheers
r.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorMost probably yes but this it’s something custom or you should have some html js knowledges
You can try this solution : http://stackoverflow.com/questions/22453332/scroll-to-div-on-page-load
I cannot support this it’s somthing custom, it’s only a suggestion.
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,
Do you have added any redirect rule in wp-content/themes/kleo-child/functions.php ?
If yes remove it,
If not you to set your destination after loginCOPY CODEfunction sq7_rdu_redirect( $redirect_to, $request, $user ) { $redirect_to = '/my-route-after-redirect/'; return $redirect_to; } add_filter('login_redirect', 'sq7_rdu_redirect', 11, 3)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