Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #750231

    I would really like to have the sidebar disabled on single post portfolio entries but enabled on single post blog entries.
    Is there a way to do this?

    • This topic was modified 7 years, 9 months ago by everkaaik.
    #752168

    Hey everkaaik,

    Thank you for using Enfold.

    Please enable the sidebar in the Sidebar Settings panel then add this code in the functions.php file:

    add_filter('avia_layout_filter', 'avia_layout_filter_mod', 10, 2);
    function avia_layout_filter_mod($layout, $post_id) {
        if( is_singular('portfolio') ) {
            $layout['current'] = $layout['fullsize'];
            $layout['current']['main'] = 'fullsize';
        }
        return $layout;
    }

    Best regards,
    Ismael

    #752921

    Thank you so much Ismael!
    This worked perfectly :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Different Sidebar for Single Page Blog and Portofolio posts?’ is closed to new replies.