Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #25564

    Hello, first of all I want to say I love your theme and would like to thank you for such a great theme.

    I just have some little issues and questions.

    When I post something, such as this: http://jharden13.com/highlights/official-high-school-mix/

    The featured image is only showing half, and I can’t delete it because I need it as preview image.

    Is there any way I can delete the featured image from all single posts? Or better yet, is there a way I can delete the featured image just from certain categories?

    Also, in embedded YouTube videos, such as http://jharden13.com/about-james-harden/biography/

    When you scroll down, you can notice that the YouTube videos are overlapping the top menu. Is there a way to fix that also?

    Lastly I want to display “You may also like” portion in the blog, like here: http://kriesi.at/themes/enfold/2012/12/12/lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit-aenean-commodo-ligula-eget-dolor-aenean-massa/

    How would I go about doing that?

    Again thank you so much guys and I’ll look forward to your answers.

    #127396

    1) In includes/loop-index.php replace

    else if(strpos($blog_style, 'small')  !== false)
    {

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

    with

    else if(strpos($blog_style, 'small')  !== false && !is_single())
    {

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

    2) You can try this fix: http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html – add the code to the bottom of functions.php.

    3) In index.php replace:

    get_template_part( 'includes/loop', 'index' );

    with

    get_template_part( 'includes/loop', 'index' );

    //show related posts based on tags if there are any
    get_template_part( 'includes/related-posts');

    Note it will only work on the standard blog page and not with the “layout builder” blog element.

    #127397

    Thank you for your answers, but #2 and #3 doesn’t work..

    I inserted the code on the very bottom of Theme Functions(functions.php) but the videos are still overlapping: http://jharden13.com/about-james-harden/biography/

    I replaced the code in index.php also, and I changed every post from Video to Standard, but I still don’t see related posts.. They only have an <iframe> tag that embeds YouTube videos.

    Thanks again Dude..

    #127398

    Hi akim9044,

    The video overlap issue looks fixed on my end. They are no longer visible above the header when I view the site now.

    For the last issue, the post type doesn’t matter. The related posts will show if the posts have common *tags*. Note, they MUST have tags to be related.

    Regards,

    Devin

    #127399

    Oh ok, they needed tags! Thank you so much! I’m using Firefox and I still see videos overlapping.. But it’s not a big problem, thanks so much again!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to remove featured image from single post’ is closed to new replies.