Viewing 26 posts - 1 through 26 (of 26 total)
  • Author
    Posts
  • #539047

    Hi Guys!
    At first – thanks for great theme! I’m really happy I decided to buy it. :)

    My problem is;
    I choose multi-author blog layout and I choose Elegant blog styling in Enfold Theme Options/Blog Layout . After that featured blog post image links to author page. Both on blog post list and in single post. Isn’t a bug?

    Regards!
    Chris

    #539143

    Hey kwlodar!

    Do you mean the gravatars? http://kriesi.at/themes/enfold/blog/blog-multi-author/

    The gravatars should be linking to the author page but the featured images should still be linking to the post.

    Cheers!
    Elliott

    #539158

    I agree. Unfortunately it is different. The featured image links to author page. Take a look: https://www.sentime.pl/blog/.
    I’ve made no changes in code.
    Regards!
    Chris

    #539271

    Hi!

    The featured images should be displayed on top of the title. Have you done customizations? Let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    Regards,
    Elliott

    #539530

    Hi,
    no, I haven’t done any customizations.
    I’ll try to go over your instruction and I’ll let you know.
    Thank you!
    Chris

    #539545

    Hey!

    We will keep the thread open and will wait to hear from you :)

    Regards,
    Yigit

    #542065

    Hi,
    I deactivated all plugins, removed enfold at all, and uploaded fresh, from themeforest, and the situation is the same.
    In the meantime I also switched the domain: https://www.dev.sensity.pl/blog/ (sorry for the ssl issue – it’s dev-site).
    Pls help.

    Regards!
    Chris

    #542973

    Hi!
    May I ask for support?
    Regards!

    #543771

    Hey!

    Your link is not loading for me. Do we need to login? If so then please send us login information. Be sure to set your reply as private.

    I viewed your previous link but it looks like you have the default theme activated and not Enfold.

    Regards,
    Elliott

    #544035

    Hi Elliott,
    No, you don’t have to log in, and the link (https://www.dev.sensity.pl/blog/) works fine. The only issue is possible browser warning about the ssl certificate which belongs to sensity.pl domain, and it is not wildcard. You have to ignore the warning.

    #544093

    Hi,

    Not sure what’s going on there, please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Regards,
    Rikard

    #544322

    login data attached.

    Pls take a look also at https://www.dev.sensity.pl/o-sensity/aktualnosci/, where thumbnails are on the left are displayed in the wrong way.

    #546202

    Hey!

    That’s actually the default behavior when you set the blog style to multi author. If you want the featured image to go to the actual post, modify the includes > loop-index.php file. Look for this line of code then remove it:

    Line 125:

    $link = get_post_format_link($post_format);
    

    Line 133:

    $link = get_author_posts_url($post->post_author);
    

    Regards,
    Ismael

    #910738

    Hi,

    that works fine, but now the link on the author-image links to the actual post, too. What is to do, when I want to link the author-image to the author-posts?

    Regards,
    Stefan

    #911068

    Hi,

    Thank you for the update. We would like to see the actual setup of the site. Please provide the site url in the private field.

    Best regards,
    Ismael

    #914952
    This reply has been marked as private.
    #915265

    Hi,

    Thank you for the update. Please revert the file back to default. It should work as is. The featured image links to the actual post, author image to the author page. On a single post page, the featured image opens a lightbox.

    Best regards,
    Ismael

    #917370

    Hi,

    I reverted the file, but now the featured image links to the author page not to the post. Also on the single-post page, the featured Image links to the author page.

    Best regards,
    Stefan

    #918141

    Hi,

    Thank you for the update. Please provide the login details so that we can do some tests. Make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    #918143

    Hi,

    UPDATE: Please edit the includes > loop-index.php file, look for this code around line 195:

    
    if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
    if($slider) echo '
    <div class="big-preview '.$blog_style.'">'.$slider.'</div>
    ';
    

    Add this line above the code.

    $link = get_the_permalink($the_id);
    

    Best regards,
    Ismael

    #918657

    Hi,

    thank you very much, it works nearly perfect, just one last step. On the single post page, the featured image links to the post and do not open the lightbox.

    Best regards,
    Stefan

    #918898

    Hi,

    Thank you for the update.

    Please add the is_single conditional function so that it won’t affect the actual post. Just replace the modification with this.

    if( !is_single() ) {
    	$link = get_the_permalink($the_id);
    }

    Best regards,
    Ismael

    #919285

    Hi,

    thank you, but that doesn’t work. When I replace the modification with the new code, the featured image has the link to the author-page.

    Best Regards
    Stefan

    #919570

    Hi,

    Please post the login details in the private field so that we can test the modification. Or replace the code with this.

    if( !is_single() ) {
    	$link = get_the_permalink($the_id);
    } else {
            $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
    }

    Best regards,
    Ismael

    #921866

    Hi,

    that’s it! Works very well. Thank you!

    Best Regards
    Stefan

    #921880

    Hey Kulturkomplize,

    I’m glad Ismael solution was able to help. If you need additional help please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 26 posts - 1 through 26 (of 26 total)
  • The topic ‘Featured image links to author page’ is closed to new replies.