• creartlab

    (@creartlab)


    Hello,
    I wanted to know if I can change the breadcrumbs.
    Now it’s showing: HOME/BRANDS ADD-ON/BRAND

    Can i change BRANDS ADD-ON with only BRANDS?
    Thanks
    best regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hello there,
    hope you are doing well! ??

    You can change it adding the next code in the functions.php of your active theme, replacing “New label name” by the new name you want.

    if( ! function_exists('yith_wcbr_taxonomy_label_name_custom')) {
        function yith_wcbr_taxonomy_label_name_custom( $taxonomy_name ) {
            $taxonomy_name = 'New label name';
            return $taxonomy_name;
        }
        add_filter( 'yith_wcbr_taxonomy_label_name', 'yith_wcbr_taxonomy_label_name_custom', 10 );
    }

    Could you check it and let us know, please?

    Have a nice day!

    • This reply was modified 6 years ago by YITHEMES.
    Thread Starter creartlab

    (@creartlab)

    Hello, thanks so much for replay.
    I added the code in functions.php but it didn’t change anything. Always: HOME/BRANDS ADD-ON/ and name of brand

    I hope you can help me with something more ??
    have a nice day

    Plugin Author YITHEMES

    (@yithemes)

    Hello,

    Could you check if you have the at least the version 1.2.3 installed and if you are adding the code in the functions.php of your active theme?

    Maybe you are using a child theme, so you can try to add the code also in the parent theme functions.php.

    Let us know any news, please.

    Thread Starter creartlab

    (@creartlab)

    Hello, no child theme. Yes of course it’s the only actived theme

    The plugin version I found on this installation is 1.2.0.

    Plugin Author YITHEMES

    (@yithemes)

    Hello there,
    and sorry for the late reply.

    You should update the plugin to the latest version to make the previous code work properly, could you check it, please?

    Let us know any news.

    Have a nice day!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘BRANDS ADD-ON in Breadcrumbs’ is closed to new replies.