This topic has 17 replies, 2 voices, and was last updated 7 years by Laura.

  • Author
  • #145645
     wilfriedMarseille
    Participant

    Hello,
    I had problem with my connextion internet the past month and since i’m back i got a bug.
    when i go on my website http://www.zikrea.com all is good.
    But when i’m connect my profil. If i go on http://www.zikrea.com, i got a redirection on http://www.zikrea.com/membres/”mysuername”/messages/

    If you love Ableton check my blog :
    www.zikrea.com

    #145743
     Laura
    Moderator

    Hi,

    Do you have the latest version of WordPress ? If not update those

    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 excepting BuddyPress/bbPress it works? if yes enable back plugins one by one to identify what causes this.

    If you de-activate the child theme it works ?

    Let me know

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #145797
     wilfriedMarseille
    Participant

    Yes i just make all updates and the problem is always here …

    If you love Ableton check my blog :
    www.zikrea.com

    #146005
     Laura
    Moderator

    Hello, did you add any custom codes to the theme? Did you try deactivating other plugins?

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #146111
     wilfriedMarseille
    Participant

    Hello,
    Yes I try to desactivate extensions.
    And i don’t have add custom code.
    I just activate the kleo bundle extensions.
    you can see all the activate plugin on the pics.

    If you love Ableton check my blog :
    www.zikrea.com

    Attachments:
    You must be logged in to view attached files.
    #146115
     wilfriedMarseille
    Participant

    So I try to let only the 5 extension for buddypress and the problem is always here …

    I reactive my extensions, i let you a pic with the only 5 extension than i activate for the test.

    If you love Ableton check my blog :
    www.zikrea.com

    Attachments:
    You must be logged in to view attached files.
    #146269
     Laura
    Moderator

    Hello, it is a custom code issue, because when i activate the main theme, the issue is not there, please check at your child theme files 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #146320
     wilfriedMarseille
    Participant

    Hi,
    I got only the function.php than i edit and i don’t think than is the script inside who make the bug.
    <?php
    /**
    * @package WordPress
    * @subpackage Kleo
    * @author SeventhQueen <themesupport@seventhqueen.com>
    * @since Kleo 1.0
    */

    /**
    * Kleo Child Theme Functions
    * Add custom code below
    */

    /*Ajouter image sous le menu*//*
    add_action(‘kleo_before_content’,’my_header_image’);
    function my_header_image() {
    echo ‘‘;
    }*/

    /*Ajouter slider en bas d’un article*/
    /*
    function KleoAddSlideUnderPosts( $content ) {

    if( is_single() ) {

    $revslidershortcode = do_shortcode(‘[rev_slider alias=”acc3″]’);
    $content .= $revslidershortcode;
    }

    return $content;

    }
    add_filter(‘the_content’, ‘KleoAddSlideUnderPosts’);
    */

    /*Ajouter slider endessous le menu*/
    function KleoAddSlideUnderPosts( $content ) {
    if( is_single() ) {
    $revslidershortcode = do_shortcode(‘[rev_slider alias=”acc3″]’);
    $content = $revslidershortcode . $content;
    }
    return $content;
    }
    add_filter(‘the_content’, ‘KleoAddSlideUnderPosts’);

    /*Supprimer l’icone des thumbnails*/
    add_action( ‘after_setup_theme’, ‘change_hover_element’, 10 );

    function change_hover_element() {
    global $kleo_config;
    $kleo_config[‘image_overlay’] = ‘<span class=”hover-element”><i class=”equalizer”></i></span>’;

    }

    /*Function metadonné : modification auteur*/
    if ( ! function_exists( ‘kleo_entry_meta’ ) ) :
    /**
    * Prints HTML with meta information for current post: categories, tags, permalink, author, and date.
    * Create your own kleo_entry_meta() to override in a child theme.
    * @since 1.0
    */
    function kleo_entry_meta( $echo = true, $att = array() ) {

    global $kleo_config;
    $meta_list = array();
    $author_links = ”;
    $meta_elements = sq_option( ‘blog_meta_elements’, $kleo_config[‘blog_meta_defaults’] );

    // Translators: used between list items, there is a space after the comma.
    if ( in_array( ‘categories’, $meta_elements ) ) {
    $categories_list = get_the_category_list(__(‘, ‘, ‘kleo_framework’));
    }

    // Translators: used between list items, there is a space after the comma.
    if ( in_array(‘tags’, $meta_elements ) ) {
    $tag_list = get_the_tag_list(”, __(‘, ‘, ‘kleo_framework’));
    }

    $date = sprintf( ‘‘ .
    ‘<time class=”entry-date” datetime=”%2$s”>%3$s</time>’ .
    ‘<time class=”modify-date hide hidden updated” datetime=”%4$s”>%5$s</time>’ .
    ‘,
    esc_url( get_permalink() ),
    esc_attr( get_the_date( ‘c’ ) ),
    esc_html( get_the_date() ),
    esc_html( get_the_modified_date( ‘c’ ) ),
    esc_html( get_the_modified_date() )
    );

    if ( is_array( $meta_elements ) && !empty( $meta_elements ) ) {

    if ( in_array( ‘author_link’, $meta_elements ) || in_array( ‘avatar’, $meta_elements ) ) {

    /* If buddypress is active then create a link to Buddypress profile instead */
    if (function_exists( ‘bp_is_active’ ) ) {
    $author_link = esc_url( bp_core_get_userlink( get_the_author_meta( ‘ID’ ), $no_anchor = false, $just_link = true ) );
    $author_title = esc_attr( sprintf( __( ‘View %s\’s profile’, ‘kleo_framework’ ), get_the_author() ) );
    } else {
    $author_link = esc_url( get_author_posts_url( get_the_author_meta( ‘ID’ ) ) );
    $author_title = esc_attr( sprintf( __( ‘View all POSTS by %s’, ‘kleo_framework’ ), get_the_author() ) );
    }

    $author = sprintf( ‘%3$s %4$s‘,
    $author_link,
    $author_title,
    in_array( ‘avatar’, $meta_elements ) ? get_avatar( get_the_author_meta( ‘ID’ ), 50) : ”,
    in_array( ‘author_link’, $meta_elements ) ? ‘<span class=”author-name”>’ .’Auteur : ‘. get_the_author() . ‘</span>’ : ”
    );

    $meta_list[] = ‘<small class=”meta-author author vcard”>’ . $author . ‘</small>’;
    }

    if ( function_exists( ‘bp_is_active’ ) ) {
    if ( in_array( ‘profile’, $meta_elements ) ) {
    $author_links .= ‘‘ .
    ‘<i class=”icon-user-1 hover-tip” ‘ .
    ‘data-original-title=”‘ . esc_attr(sprintf(__(‘View profile’, ‘kleo_framework’), get_the_author())) . ‘”‘ .
    ‘data-toggle=”tooltip”‘ .
    ‘data-placement=”top”></i>’ .
    ‘;
    }

    if ( bp_is_active( ‘messages’ ) ) {
    if ( in_array( ‘message’, $meta_elements ) ) {
    $author_links .= ‘‘ .
    ‘<i class=”icon-mail hover-tip” ‘ .
    ‘data-original-title=”‘ . esc_attr(sprintf(__(‘Contact %s’, ‘kleo_framework’), get_the_author())) . ‘” ‘ .
    ‘data-toggle=”tooltip” ‘ .
    ‘data-placement=”top”></i>’ .
    ‘;
    }
    }
    }

    if ( in_array( ‘archive’, $meta_elements ) ) {
    $author_links .= ‘‘ .
    ‘<i class=”icon-docs hover-tip” ‘ .
    ‘data-original-title=”‘ . esc_attr(sprintf(__(‘View all posts by %s’, ‘kleo_framework’), get_the_author())) . ‘” ‘ .
    ‘data-toggle=”tooltip” ‘ .
    ‘data-placement=”top”></i>’ .
    ‘;
    }

    }

    if ( $author_links != ” ) {
    $meta_list[] = ‘<small class=”meta-links”>’ . $author_links . ‘</small>’;
    }

    if (in_array( ‘date’, $meta_elements ) ) {
    $meta_list[] = ‘<small>’ . $date . ‘</small>’;
    }

    $cat_tag = array();

    if ( isset( $categories_list ) && $categories_list ) {
    $cat_tag[] = $categories_list;
    }

    if ( isset( $tag_list ) && $tag_list ) {
    $cat_tag[] = $tag_list;
    }
    if (!empty($cat_tag)) {
    $meta_list[] = ‘<small class=”meta-category”>’.implode(“, “,$cat_tag).'</small>’;
    }

    //comments
    if ((!isset($att[‘comments’]) || (isset($att[‘comments’]) && $att[‘comments’] !== false)) && in_array( ‘comments’, $meta_elements )) {
    $meta_list[] = ‘<small class=”meta-comment-count”>‘.get_comments_number() .
    ‘ <i class=”icon-chat-1 hover-tip” ‘ .
    ‘data-original-title=”‘.sprintf( _n( ‘This article has one comment’, ‘This article has %1$s comments’, get_comments_number(), ‘kleo_framework’ ),number_format_i18n( get_comments_number() ) ).'” ‘ .
    ‘data-toggle=”tooltip” ‘ .
    ‘data-placement=”top”></i>’ .
    </small>’;
    }

    $meta_separator = isset( $att[‘separator’] ) ? $att[‘separator’] : sq_option( ‘blog_meta_sep’, ‘, ‘) ;

    if ( $echo ) {
    echo implode( $meta_separator, $meta_list );
    }
    else {
    return implode( $meta_separator, $meta_list );
    }

    }
    endif;

    May be do you have a prenium support ? To “Re-install” my blog together. Because i got a lot of probleme actually …

    If you love Ableton check my blog :
    www.zikrea.com

    #146321
     wilfriedMarseille
    Participant
    COPY CODE
    <?php
    /**
     * @package WordPress
     * @subpackage Kleo
     * @author SeventhQueen <themesupport@seventhqueen.com>
     * @since Kleo 1.0
     */
    
    /**
     * Kleo Child Theme Functions
     * Add custom code below
    */ 
    
    /*Ajouter image sous le menu*//*
    add_action('kleo_before_content','my_header_image');
    function my_header_image() {
        echo '<img class="banner" src="http://www.zikrea.com/wp-content/uploads/2015/10/Un_blog_mao_associatifOK.jpg" />';
    }*/
    
    /*Ajouter slider en bas d'un article*/
    /*
    function KleoAddSlideUnderPosts( $content ) {
     
        if( is_single() ) {
     
            $revslidershortcode = do_shortcode('[rev_slider alias="acc3"]');
            $content .= $revslidershortcode;
        }
     
        return $content;
     
    }
    add_filter('the_content', 'KleoAddSlideUnderPosts');
    */
    
    /*Ajouter slider endessous le menu*/
    function KleoAddSlideUnderPosts( $content ) {
        if( is_single() ) {
            $revslidershortcode = do_shortcode('[rev_slider alias="acc3"]');
            $content = $revslidershortcode . $content;
        }
        return $content;
    }
    add_filter('the_content', 'KleoAddSlideUnderPosts');
    
    /*Supprimer l'icone des thumbnails*/
    add_action( 'after_setup_theme', 'change_hover_element', 10 );
     
    function change_hover_element() {
        global $kleo_config;
        $kleo_config['image_overlay'] = '<span class="hover-element"><i class="equalizer"></i></span>';
     
    }
    
    /*Function metadonné : modification auteur*/
    if ( ! function_exists( 'kleo_entry_meta' ) ) :
        /**
         * Prints HTML with meta information for current post: categories, tags, permalink, author, and date.
         * Create your own kleo_entry_meta() to override in a child theme.
         * @since 1.0
         */
        function kleo_entry_meta( $echo = true, $att = array() ) {
    
            global $kleo_config;
            $meta_list = array();
            $author_links = '';
            $meta_elements =  sq_option( 'blog_meta_elements', $kleo_config['blog_meta_defaults'] );
    
            // Translators: used between list items, there is a space after the comma.
            if ( in_array( 'categories', $meta_elements ) ) {
                $categories_list = get_the_category_list(__(', ', 'kleo_framework'));
            }
    
            // Translators: used between list items, there is a space after the comma.
            if ( in_array('tags', $meta_elements ) ) {
                $tag_list = get_the_tag_list('', __(', ', 'kleo_framework'));
            }
    
            $date = sprintf( '<a href="%1$s" rel="bookmark" class="post-time">' .
                '<time class="entry-date" datetime="%2$s">%3$s</time>' .
                '<time class="modify-date hide hidden updated" datetime="%4$s">%5$s</time>' .
                '</a>',
                esc_url( get_permalink() ),
                esc_attr( get_the_date( 'c' ) ),
                esc_html( get_the_date() ),
                esc_html( get_the_modified_date( 'c' ) ),
                esc_html( get_the_modified_date() )
            );
    
            if ( is_array( $meta_elements ) && !empty( $meta_elements ) ) {
    
                if ( in_array( 'author_link', $meta_elements ) || in_array( 'avatar', $meta_elements ) ) {
    
                    /* If buddypress is active then create a link to Buddypress profile instead */
                    if (function_exists( 'bp_is_active' ) ) {
                        $author_link = esc_url( bp_core_get_userlink( get_the_author_meta( 'ID' ), $no_anchor = false, $just_link = true ) );
                        $author_title = esc_attr( sprintf( __( 'View %s\'s profile', 'kleo_framework' ), get_the_author() ) );
                    } else {
                        $author_link = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) );
                        $author_title = esc_attr( sprintf( __( 'View all POSTS by %s', 'kleo_framework' ), get_the_author() ) );
                    }
    
                    $author = sprintf( '<a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s %4$s</a>',
                        $author_link,
                        $author_title,
                        in_array( 'avatar', $meta_elements ) ? get_avatar( get_the_author_meta( 'ID' ), 50) : '',
                        in_array( 'author_link', $meta_elements ) ? '<span class="author-name">' .'Auteur : '. get_the_author() . '</span>' : ''
                    );
    
                    $meta_list[] = '<small class="meta-author author vcard">' . $author . '</small>';
                }
    
                if ( function_exists( 'bp_is_active' ) ) {
                    if ( in_array( 'profile', $meta_elements ) ) {
                        $author_links .= '<a href="' . bp_core_get_userlink( get_the_author_meta( 'ID' ), $no_anchor = false, $just_link = true ) . '">' .
                            '<i class="icon-user-1 hover-tip" ' .
                            'data-original-title="' . esc_attr(sprintf(__('View profile', 'kleo_framework'), get_the_author())) . '"' .
                            'data-toggle="tooltip"' .
                            'data-placement="top"></i>' .
                            '</a>';
                    }
    
                    if ( bp_is_active( 'messages' ) ) {
                        if ( in_array( 'message', $meta_elements ) ) {
                            $author_links .= '<a href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( get_the_author_meta( 'ID' ) ) ) . '">' .
                                '<i class="icon-mail hover-tip" ' .
                                'data-original-title="' . esc_attr(sprintf(__('Contact %s', 'kleo_framework'), get_the_author())) . '" ' .
                                'data-toggle="tooltip" ' .
                                'data-placement="top"></i>' .
                                '</a>';
                        }
                    }
                }
    
                if ( in_array( 'archive', $meta_elements ) ) {
                    $author_links .= '<a href="' . esc_url(get_author_posts_url(get_the_author_meta('ID'))) . '">' .
                        '<i class="icon-docs hover-tip" ' .
                        'data-original-title="' . esc_attr(sprintf(__('View all posts by %s', 'kleo_framework'), get_the_author())) . '" ' .
                        'data-toggle="tooltip" ' .
                        'data-placement="top"></i>' .
                        '</a>';
                }
    
            }
    
            if ( $author_links != '' ) {
                $meta_list[] = '<small class="meta-links">' . $author_links . '</small>';
            }
    
            if (in_array( 'date', $meta_elements ) ) {
                $meta_list[] = '<small>' . $date . '</small>';
            }
    
            $cat_tag = array();
    
            if ( isset( $categories_list ) && $categories_list ) {
                $cat_tag[] = $categories_list;
            }
    
            if ( isset( $tag_list ) && $tag_list ) {
                $cat_tag[] = $tag_list;
            }
            if (!empty($cat_tag)) {
                $meta_list[] = '<small class="meta-category">'.implode(", ",$cat_tag).'</small>';
            }
    
            //comments
            if ((!isset($att['comments']) || (isset($att['comments']) && $att['comments'] !== false)) && in_array( 'comments', $meta_elements )) {
                $meta_list[] = '<small class="meta-comment-count"><a href="'. get_permalink().'#comments">'.get_comments_number() .
                    ' <i class="icon-chat-1 hover-tip" ' .
                    'data-original-title="'.sprintf( _n( 'This article has one comment', 'This article has %1$s comments', get_comments_number(), 'kleo_framework' ),number_format_i18n( get_comments_number() ) ).'" ' .
                    'data-toggle="tooltip" ' .
                    'data-placement="top"></i>' .
                    '</a></small>';
            }
    
            $meta_separator = isset( $att['separator'] ) ? $att['separator'] : sq_option( 'blog_meta_sep', ', ') ;
    
            if ( $echo ) {
                echo implode( $meta_separator, $meta_list );
            }
            else {
                return implode( $meta_separator, $meta_list );
            }
    
        }
    endif;
    
    

    If you love Ableton check my blog :
    www.zikrea.com

    #146322
     wilfriedMarseille
    Participant

    Hello,
    Only function.php is edit on my child theme.
    And i don’t think the bug is from this script.
    May be do you have a prenium support ? To “Re-install” my blog together. Because i got a lot of probleme actually …

    If you love Ableton check my blog :
    www.zikrea.com

    #146499
     Laura
    Moderator

    Hello, for an install service please check https://archived.seventhqueen.com/services/wordpress-theme-installation-service

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #146549
     wilfriedMarseille
    Participant

    Ok thanks but for the CSS bug you don’t have solution ?
    Because i got it just after a wordpress update …

    If you love Ableton check my blog :
    www.zikrea.com

    #146550
     wilfriedMarseille
    Participant

    Hello,
    So you don’t know why my theme is in bug actually ?

    An with the install service how we say pre sales question ?
    Because i know how install WordPress, import demo and all the service.

    But i search some one who can debug my installation. ( Make a good back up, keep all my post and design, and re instal the theme fr a best optimisation. And get a good support for develop some basic function like different design for the different category post. )

    If you love Ableton check my blog :
    www.zikrea.com

    #146556
     wilfriedMarseille
    Participant

    I open a new ticket ta ask info about install service.

    Thanks you.

    If you love Ableton check my blog :
    www.zikrea.com

    #146722
     Laura
    Moderator

    Hello, if the bug doesnt disappear after a re-install, then it could be caused by third party plugins or custom codes but i am not sure what it could be

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #147018
     wilfriedMarseille
    Participant

    Ok,
    I don’t get again the solution i try to find it i let you know when i found it.
    Thanks you

    If you love Ableton check my blog :
    www.zikrea.com

    #147135
     wilfriedMarseille
    Participant

    Hi

    I found the solution in the dashboard -_-

    Juste because i select profil page in homepageredirect in theme options.

    So all is Good :DDDD

    PS I let you a pic for show you the solution

    If you love Ableton check my blog :
    www.zikrea.com

    Attachments:
    You must be logged in to view attached files.
    #147393
     Laura
    Moderator

    Glad you could resolve it 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

Viewing 18 posts - 1 through 18 (of 18 total)

The forum ‘Bugs & Issues’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?