Home Forums Pro Themes eCommerce Market Pro Breadcrumbs

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #97115
    Freedom
    Participant

    Hi

    I’ve been searching for a solution how to change display names in breadcrumb with no luck.

    I want to remove “Products” from breadcrumb and show my shop base title Properties.
    Is there any simple way to do this?

    Rename Products to Properties

    #97170
    wensolutions
    Keymaster

    Hello @freedom,

    First of all, thank you so much for using the theme.

    Regarding your query, there is no such option to customize the pathways given by the breadcrumb in the theme itself. Breadcrumb by default shows the complete path of the individual page starting from the home.

    However, if you still want to make the customization in your site, you can refer to our Hire our Customizer service.

    Hope to hear from you again.

    For any further query/confusion, feel free to reach us.

    Regards!!

    #97230
    Freedom
    Participant

    Breadcrumb by default shows the complete path of the individual page starting from the home.

    The thing I don’t have any page called PRODUCTS.
    Do you mean thats hardcoded?

    #97276
    wensolutions
    Keymaster

    Hello @freedonm,

    The WooCommerce will also provide the filter using which you can change the text “Product”.

    For this activate the child theme and in your child theme functions.php add below given code.

    function ecommerce_market_pro_change_breadcrumb( $breadcrumb, $args ) {
        return str_replace( 'Products', 'Your text', $breadcrumb );
    }
    add_filter( 'breadcrumb_trail', 'ecommerce_market_pro_change_breadcrumb', 10, 2 );

    In place of “Your text”, you can add any text you like.

    Hope this helps.

    Thank you.

    #97310
    Freedom
    Participant

    Awesome!
    Thank you so much

    #97355
    wensolutions
    Keymaster

    Hello @freedom,

    Glad we could help you.

    Let us know if you have any issues further.

    Also, we would really appreciate if you could help us by rating our theme by following the link below:

    https://wordpress.org/support/theme/ecommerce-market/reviews

    Thank you.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.