Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #354271

    Can i disable the permanent link from the title and post image list?
    Regards

    #354489

    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

    #358239

    $output .= $current_post['title'];

    is this the code for removing the link from the title post on the post page ?

    #358291

    Hi!


    @niguli
    it outputs post title

    Best regards,
    Yigit

    #358338

    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
    remove link from title post

    #358669

    Hi!

    Please add following code to Quick CSS

    .single h1.post-title.entry-title {
    pointer-events: none;
    }

    Best regards,
    Yigit

    #359548

    That’s perfect, thanks (add it on the FAQ area of enfold support)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Disable permanent link from blog image and title items?’ is closed to new replies.