Jul 10, 2018 9:03 am
Hello,
Is it possible to extend the number of caracters shown into the breadcrumb ? And if yes, how can I do ?
Many thanks,
Raphaelle
4 Replies
Jul 10, 2018 1:58 pm
Hi Raph,
I'm sorry, but it is not possible yet. Please wait for the next update. We'll add filter hook on text length you'll be able to change it.
We're releasing the new version today.
Jul 11, 2018 9:18 pm
The hook is added. please update to latest 1.5.1 version and put this code in your activate theme functions.php file. The red marked number is the text length, it's 19 by default. You can change it to whatever you want.
function wpforo_custom_text_length( $length ){
$length = 19;
return $length;
}
add_filter( 'wpforo_breadcrumb_text_length', 'wpforo_custom_text_length');
How to Easily Add Custom Code in WordPress (without Breaking Your Site)
Jul 12, 2018 1:04 pm
Hi Robert,
It's perfectly working, many thanks ! 🙂