Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #729651

    I have been so happy with your theme that since I’ve found it, every site I’ve made in wordpress has been with Enfold. Thank you for a great theme and wonderful support!

    I have a question about blogs. My main blog I have set up to be Single Post Style: Single post with big preview image (featured image)

    I am setting up a podcast and I want those to be set up to be displayed Single Post Style: Single post with small preview image (featured image)

    Can you help me have a certain category (podcast) or possibly audio format to be displayed differently from the main blog?

    #729895

    Hey!

    Please enfold/includes/loop-index.php and find

    
    if(is_single()) $blog_style = avia_get_option('single_post_style','single-big');
    

    and add following code right below it

    
    if(is_single() && in_category('podcast')) $blog_style = 'single-small';
    

    We would recommend you to use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and move the files to your child theme before modifying

    Best regards,
    Yigit

    • This reply was modified 7 years, 10 months ago by Yigit.
    #730435

    This is perfect! Thank you for your help!

    #730441

    Hi!

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Blog layout’ is closed to new replies.