How do I remove this link on entry title?
<h1 class=”main-title entry-title”>
FAQ
( why add a link there in the first place? a link to the very page the visitor is on?)
<h1 class=”main-title entry-title”>
<–a itemprop=”headline” title=”Permanent Link: FAQ” rel=”bookmark” href=”http://kriesi.at/themes/enfold/pages/faq/”>FAQ</a–>
Hi,
Please try the following in Quick CSS under Enfold–>General Styling:
h1.main-title a {
pointer-event:none !important;
}
If it should not work then please link to the site in question.
Best regards,
Rikard
Hi
It dit not work
tried to play around with the bredcrump and show title themeseeting but they did not seem to have any impact either
Think I am gonna try live with it for now
Thanks
Hi,
I’m not sure if I’ve misunderstood you or not, maybe you could try to explain a bit further? A screenshot might help as well.
Best regards,
Rikard
Hi,
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
function fix_single_post_title($args,$id)
{
$args['title'] = get_the_title($id);
$args['link'] = "";
$args['heading'] = 'h1';
return $args;
}
Best regards,
Yigit
Works like a charm Thanks a lot