• Hi guys,
    I installed Virtue / Pinnacle ToolKit in my website, I created few pages of portfolio and everything is OK.

    I’d like to add a sidebar in any portfolio pages, the same sidebar which is aside of the “normal” pages.

    Any idea?

    Thanks
    Marcello

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey, The portfolio grid is designed to be fullwidth. There isn’t a sidebar option with that template.

    In the premium theme you can use the portfolio shortcodes to add to any page.

    Or if your using free you can use a child theme and add in a function to force a sidebar on the grid page. Something like this:

    add_filter('kadence_display_sidebar', 'kt_page_sidebar');
    function kt_page_sidebar($sidebar) {
      if (is_page_template('page-portfolio.php') ) {
        return true;
      }
      return $sidebar;
    }

    Kadence Themes

    Hi, I have the same issue. I would like to add a sidebar to the portfolio pages. I have the premium version.
    Where should I insert the above code?

    hannah

    (@hannahritner)

    Hey bymeli,
    If you’re using the premium version then you can use a sidebar page template and add your portfolio posts via shortcode like this: [portfolio_posts orderby=date excerpt=false columns=4 items=16 height=200 lightbox=true showtypes=true cat=photos]
    Also, if using the premium theme please use the premium support forums- http://www.kadencethemes.com/support-forums/forum/virtue-theme/

    Hannah

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sidebar in Portfolio pages’ is closed to new replies.