Forum Replies Created

Viewing 40 posts - 7,521 through 7,560 (of 20,101 total)
  • Author
  • in reply to: creat an anchor #157235
     Radu
    Moderator

    Hi

    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 solution
    in reply to: Social Sharing #157233
     Radu
    Moderator
    Not marked as solution
    in reply to: Transparent drop down menu color #157232
     Radu
    Moderator

    You 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 solution
    in reply to: kleo_ajax_results #157231
     Radu
    Moderator
    Not marked as solution
    in reply to: remove floating email icon #157230
     Radu
    Moderator

    Hi,

    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 CODE
    
    if ( ! 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 solution
    in reply to: Side menu logo standard broken link #157225
     Radu
    Moderator
    Not marked as solution
    in reply to: REDIRECT AFTER ACTIVATION FOR POST REGISTRATION #157224
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: mobile sticky menu #157223
     Radu
    Moderator

    Hi,
    Use this CSS

    COPY 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 solution
     Radu
    Moderator

    Hi,

    Please replace all of that code with this one, the excerpt tag will work as it should

    COPY CODE
    
    if ( ! 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 solution
     Radu
    Moderator

    HI,

    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 solution
    in reply to: How add a page template #157126
     Radu
    Moderator

    You 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 solution
    in reply to: Kleo + UBer Menu #157124
     Radu
    Moderator

    Hi,

    TAke a look do you have solved?

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: there is an issue in the code for buddyapp #157119
     Radu
    Moderator
    Not marked as solution
    in reply to: login redirects to wp-login #157114
     Radu
    Moderator
    Not marked as solution
    in reply to: Redirect not working on login #157113
     Radu
    Moderator

    Hi,

    I’ve missed ; from the end

    Copy again the code form here : https://pastebin.com/raw/PLh95nd7

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Missing Cart Icon on Mobile #157112
     Radu
    Moderator

    You’re welcome
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Ajax Login #157111
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Mobile options – not working? #157109
     Radu
    Moderator
    Not marked as solution
    in reply to: revolution slider error #157108
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Problem with Favorite using Remove jquery strings #157107
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Kleo font styles #157103
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Social Sharing #157095
     Radu
    Moderator
    Not marked as solution
    in reply to: wise chat issues #157094
     Radu
    Moderator
    Not marked as solution
    in reply to: Essential Grids and sidebar #157092
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: How do I stop 17 year olds from signing up? #157090
     Radu
    Moderator

    Hi,

    Please replace the code with this one

    COPY CODE
    
    function 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 solution
    in reply to: Remove the load more on buddypress user activity #157087
     Radu
    Moderator

    Hi,

    You can remove that using this CSS

    COPY CODE
    
    
    ul#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 solution
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Media size #157077
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Changing images #157067
     Radu
    Moderator

    Hi

    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 solution
     Radu
    Moderator

    Ok
    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    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 solution
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Mobile options – not working? #156961
     Radu
    Moderator
    Not marked as solution
    in reply to: Missing Cart Icon on Mobile #156960
     Radu
    Moderator

    HI,

    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 solution
    in reply to: css modifications for kleo with geomywp plugin #156959
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Scroll down user profile page #156958
     Radu
    Moderator

    Most 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 solution
    in reply to: there is an issue in the code for buddyapp #156957
     Radu
    Moderator
    Not marked as solution
    in reply to: Redirect not working on login #156955
     Radu
    Moderator

    Hi,

    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 login

    COPY CODE
    
    function 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
Viewing 40 posts - 7,521 through 7,560 (of 20,101 total)

Log in with your credentials

Forgot your details?