Can i disable the permanent link from the title and post image list?
Regards
Hi druzes!
Your trying to remove the link from the image and title of your blog post correct? Try opening up /enfold/includes/helper-post-format.php and change line 63 from this.
$output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
To this.
$output .= $current_post['title'];
And then delete line 65.
$output .= " </a>";
Next comment out line 91 in /enfold/includes/loop-index.php.
//if($slider) $slider = '<a href="#" title="'.$featured_img_desc.'">'.$slider.'</a>';
Cheers!
Elliott
$output .= $current_post['title'];
is this the code for removing the link from the title post on the post page ?
sorry Yigit, I am not sure I did understand well. You mean: Yes?
I need to remove the link on the post title only in the page title because it makes no sense a link to itself. Do you agree?
Take a look here
Hi!
Please add following code to Quick CSS
.single h1.post-title.entry-title {
pointer-events: none;
}
Best regards,
Yigit
That’s perfect, thanks (add it on the FAQ area of enfold support)