Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1133058

    Hi All,

    breadcrumbs currently have a maximum character count and then it just displays “….”

    How can I make it show the full path?

    The website in question is on my test server. See link to example product in private content

    #1134390

    Hey Thomas,

    Sorry for the delay.

    You can use this filter in the functions.php file to adjust the char limit.

    add_filter('avia_breadcrumbs_args', function($args) {
       $args['truncate'] = 9999;
       return $args;
    }, 10, 1);

    Default value is 70.

    Best regards,
    Ismael

    #1134893

    Cheers Ismael,

    Appreciate the help.

    #1135354

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1144138

    Hi Rikard,

    The solution above works just fine.
    Thank you. Please close the issue.

    #1144287

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Full length breadcrumbs woocommerce’ is closed to new replies.