Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #269540

    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?

    #269755

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.