Hey guys,
I’d like to have the phone number of the company I’m making a site for show up where the breadcrumbs currently are. I thought I could change the class-breadcrumbs.php and it would change that area, but it didn’t seem to take. Which file should I update to change the breadcrumbs to a phone number instead?
Hey Andrea!
Try adding this code to the Quick CSS:
.title_container .main-title:first-child{
display: none;
}
And this to the theme functions.php:
function modify_bc(){
return "<div class='main-title phone'>PHONE HERE</div>";
}
add_filter('avia_breadcrumbs', 'modify_bc');
Cheers!
Josue