Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey,
    First you should update your version.
    Second sidebar on the product page isn’t currently available in the free version. It is in premium but hasn’t been released in the free version yet. Hopefully soon.

    Kadence Themes

    Thread Starter LibertyTalk FM

    (@allimaple)

    Right on, thank you for the quick response, and I did update the theme about 10 minutes after the first post in hopes that it might fix the problem.

    Since this is the Free version, is that also why the WooDojo Widget will not save if placed on product pages?

    BTW, love this theme, it is by far the best free ecommerce theme I have ever had the pleasure to use.

    Finally, is there any documentation for the process of upgrading from free to premium and will the settings transition over from free to premium?

    I don’t know what widget you are referring to, can you be more specific?

    As for upgrading, it’s currently not standard that the settings in theme options transfer. I am working to change this, but if you purchase I can transfer your settings if you send me an email with admin login.

    Kadence Themes

    Hi

    I can appreciate what you are saying about the paid version. Unfortunately I’m not in a position for that right now.

    I’d like to fetch the sidebar into the single product description. Otherwise it’s difficult for the user to navigate after viewing.

    Could anyone give me advice on how to do this please

    I’m using a child theme and I’m reasonably comfortable editing templates.

    Thanks.

    You would have to run a custom filter through the sidebar function. This is the filter but it will not give you control over which sidebar is there, it will always be the primary. You would need premium theme for more control.

    function kad_sidebar_on_product_page($sidebar) {
      if (is_product()) {
        return true;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_on_product_page');

    Remember to create a new thread to discuss these issues, thanks: http://wordpress.org/support/theme/virtue#postform

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Sidebar Missing on WooCommerce Product Page’ is closed to new replies.