-
AuthorPosts
-
November 17, 2021 at 6:27 pm #1329372
I’ve tried all of the solutions posted, and in doc, but none are removing them globally. Thanks.
https://tbwp.hostworks.com/November 18, 2021 at 5:28 am #1329425Hey 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,
IsmaelNovember 18, 2021 at 5:37 am #1329426It 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.November 18, 2021 at 12:37 pm #1329495Hi,
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,
YigitNovember 18, 2021 at 5:06 pm #1329542Yigit,
Thanks, but it didn’t do anything.
https://tbwp.hostworks.com/jesus/jesus-siblings-brothers-sisters/
November 19, 2021 at 6:55 am #1329616Hi,
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,
IsmaelNovember 19, 2021 at 7:22 am #1329624Ismael,
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.November 19, 2021 at 1:39 pm #1329680Hi,
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,
IsmaelNovember 19, 2021 at 2:46 pm #1329693so, do you want me to remove that one? If I remove, it leaves [av_breadcrumbs] in the space.
November 19, 2021 at 3:45 pm #1329705Hi,
You would need to remove the shortcodes you added to display your breadcrumbs manually as well.
Best regards,
YigitNovember 21, 2021 at 4:50 am #1329825I did, but where is this coming from?
https://snipboard.io/DeKNHE.jpgNovember 22, 2021 at 2:17 pm #1329964Hi,
There is one in life-challenges-question.php file inside your child theme. Please remove it from there :)
Best regards,
YigitNovember 22, 2021 at 4:25 pm #1329992This reply has been marked as private.November 22, 2021 at 5:06 pm #1329998 -
AuthorPosts
- The topic ‘Having trouble removing the breadcrumbs / area globally’ is closed to new replies.