Skip to main content

Two Quetstion about Howto.

Comments

5 comments

  • Ariel H.

    Hi Kazimierz,

    Thank you for contacting us.

    About the numbering level, this issue was already reported by another user and this was already forwarded to our developers for future improvements.
    Please try the temporary solution found on this link:
    https://support.brizy.io/hc/en-us/community/posts/14484302722321

    About the tabs element, this is how it is designed for now, however, I can also submit this as a feature request, so this may be considered in future updates.

    If you have any further questions, please let us know.

    Best regards,
    Ariel H.

    0
  • Kazimierz Karczewski

    Hi
    Ariel,

    Thank you for the fast reponse. Solving problem number one is fine. Should I report issue number two as expected functionality somewhere or will you do that? When can I expect this new functionality?

    --
    BR
    Kazik

     

    0
  • Kazimierz Karczewski

    I have one more question. Is it possible to change the word Home in breadcrumbs? From an entry in PHP functions or something like that? I don't want to install additional plugins. I don't have time to look for it in your code and I really need it.

    0
  • Ariel H.

    Hi Kazimierz,

    Thank you for the update.

    I have already submitted this as a feature request, so it may be considered in future updates. Unfortunately, we are unable to provide a specific timeframe.

    Your theme manages the breadcrumb.
    To change it without using a plugin, please refer to the solution offered on this link:

    https://zemez.io/support/wordpress/how-to/change-home-title-breadcrumbs-wordpress-themes

    I hope this helps.

    Best regards,
    Ariel H.

    0
  • Kazimierz Karczewski

    Hi, Ariel,

    What you wrote about breadcrumbs is not true. When I'm using  a simple theme as an example  TwentyTwentyTwo, breadcrumbs is managed by BrizyPro. To change word Home to another, my propositon is use WP filter funcions. Please add to the next version of the Plugin when it is possible:
    (File: \brizy-pro\content\placeholders\breadcrumbs.php),  

    line  (after 35 global $post; )
    $set = apply_filters('change_breadcrumbs', $set); 

    To change word Home in the breadcrumbs just add  snipets in theme functions.php.

    function change_breadcrumb_home_text( $set )
     {
        $set = array(
                'home'     => esc_html__( 'new_word_insted_Home', 'brizy-pro' ), // text for the 'Home' link
                'category' => esc_html__( 'Archive by Category "%s"', 'brizy-pro' ), // text for a category page
                'search'   => esc_html__( 'Search Results for "%s" Query', 'brizy-pro' ), // text for a search results page
                'tag'      => esc_html__( 'Posts Tagged "%s"', 'brizy-pro' ), // text for a tag page
                'author'   => esc_html__( 'Articles Posted by %s', 'brizy-pro' ), // text for an author page
                '404'      => esc_html__( 'Error 404', 'brizy-pro' ), // text for the 404 page
                'page'     => esc_html__( 'Page %s', 'brizy-pro' ), // text 'Page N'
                'cpage'    => esc_html__( 'Comment Page %s', 'brizy-pro' ) // text 'Comment Page N'
            );      
        return $set;
    }
    add_filter( 'change_breadcrumbs', 'change_breadcrumb_home_text', 10,1 );

    However, I had to deal with it and look in the plugin code...

    --
    BR
    Kazik

     

     

     

     

    0

Please sign in to leave a comment.