Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1329372

    I’ve tried all of the solutions posted, and in doc, but none are removing them globally. Thanks.
    https://tbwp.hostworks.com/

    #1329425

    Hey hostworks,

    Thank you for the inquiry.

    The breadcrumb is now completely disabled in the site. Have you found the option in the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings?

    Best regards,
    Ismael

    #1329426

    It is not globally. Yes, but that setting is overruled by individual pages, The site has thousands of pages. There are still many single pages with breadcrumbs. i.e., https://tbwp.hostworks.com/adam-and-eve/adam-and-eves-children/
    I wish to remove the breadcrumbs, and remove or shrink the space they take up.

    #1329495

    Hi,

    Please add following code to bottom of Functions.php file of your child theme in Appearance > Editor

    function avf_header_setting_filter_mod($header) {
       $header['header_title_bar'] = 'hidden_title_bar';
       return $header;
    }
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);

    Best regards,
    Yigit

    #1329542

    Yigit,

    Thanks, but it didn’t do anything.

    https://tbwp.hostworks.com/jesus/jesus-siblings-brothers-sisters/

    #1329616

    Hi,

    Thank you for the update.

    The filter above should have worked. Did you add it in the functions.php? Please provide the site details in the private field so that we can test the modification properly.

    Best regards,
    Ismael

    #1329624

    Ismael,
    Yes, I did. It worked on some top level pages, but none of the secondary pages.
    https://tbwp.hostworks.com/jesus/ – remove breadcrumbs and title
    https://tbwp.hostworks.com/jesus/jesus-siblings-brothers-sisters/ – didn’t do anything
    Again, I just want to eliminate the breadcrumbs and that area, not the page title.
    Info below.

    #1329680

    Hi,

    Thank you for the info.

    We noticed that the title or breadcrumb bar is duplicated and that there is a custom shortcode for the breadcrumbs in the functions.php file, which may have been added in the template files directly.

    // Remove the page heading
    function av_breadcrumbs_shortcode( $atts ) {
    	return avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    }
    add_shortcode( 'av_breadcrumbs', 'av_breadcrumbs_shortcode' );
    

    Are you using the shortcode av_breadcrumbs anywhere in the page or anywhere in the template files?

    Best regards,
    Ismael

    #1329693

    so, do you want me to remove that one? If I remove, it leaves [av_breadcrumbs] in the space.

    #1329705

    Hi,

    You would need to remove the shortcodes you added to display your breadcrumbs manually as well.

    Best regards,
    Yigit

    #1329825

    I did, but where is this coming from?
    https://snipboard.io/DeKNHE.jpg

    #1329964

    Hi,

    There is one in life-challenges-question.php file inside your child theme. Please remove it from there :)

    Best regards,
    Yigit

    #1329992
    This reply has been marked as private.
    #1329998

    Hi,

    You are welcome! Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Having trouble removing the breadcrumbs / area globally’ is closed to new replies.