By lincolndsp on
I'm using StringOverride module to replace all instances of "scoop".
But I can't replace " » Scoops" in breadcrumbs, the StringOverride module doesn't help for this query
" » Scoops" to be replaced. How can I solve the issue?
Comments
You can override
You can override theme_breadcrumb in your template.php file. From there you can search for 'Scoops' and replace/remove it in a variety of ways. For example, below str_replace replaces the string 'Scoops' with nothing (an empty string).
Hope this is helpful.
It helps
It helps! Thank you !