Tagged: Blog, breadcrumb, header
Hi,
I can’t get rid of the breadcrumb in the main blog page. No matter which settings I try in the page, the breadcrumb headers is always there.
While the given solutions in other posts work for single posts, it doesn’t work for the blog PAGE (all page templates, like grid, author etc)
How to solve the header issue for the blog main page?
It would be advisable I don’t have to set this separately for all posts through the admin.
Hi Spiv,
Its pretty simple to remove with a bit of css if you want to provide a link to the blog we can assist.
Regards,
Devin
I’ll install first the new update to see if it sheds any positive light on this matter. It’s hard to share a link because I develop locally ;)
Open up index.php and replace:
echo avia_title(array('title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
with
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
We’ll fix it in the next version.