Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #352824

    Hello!

    I need to change a few things to make the theme more search engine friendly.

    1/ add nofollow to the logo image link

    2/ in the blog grid layout add nofollow to the featured image link

    3/ remove the date under the image

    4/ and nofollow to the thumbnail 36×36 icons on the right

    5/ in a post (second link in the private box below) a title should not link to the same post it belongs to creating a loop. I need to remove the link keeping the title.

    Thank you for looking into it!

    #353177

    Hi qqqq9999!

    1. You can find that link in /enfold/framework/php/function-set-avia-frontend.php on line 499.

    $logo = "<$headline_type class='logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";
    

    2. You can find that link in /enfold/includes/loop-index.php on line 121.

    $blog_meta_output = "<a href='{$link}' class='small-preview' title='{$featured_img_desc}'>".$slider.$icon."</a>";
    

    3. I think your referring to the widget in your single post view. You can find that on line 536 in /enfold/framework/php/class-framework-widgets.php.

    echo "<span class='news-time'>".get_the_time($time_format)."</span>";	
    

    4. This is on line 523 in the same file.

    echo "<a class='news-link' title='".get_the_title()."' href='".$link."'>";
    

    5. Try line 63 in /enfold/includes/helper-post-format.php.

    $output .= "	<a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
    

    Cheers!
    Elliott

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.