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
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
Cheers Ismael,
Appreciate the help.
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
Hi Rikard,
The solution above works just fine.
Thank you. Please close the issue.
Hi,
If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon