If you are using Virtue Theme with woocommerce, you might encounter that the sidebar in product details page will not enable even you enable the settings in the Theme Options. No worry, the theme author has release a piece of code For those who want to enable sidebar at product details page. Just a copy and paste and the sidebar will be shown automatically!
To enable product details page sidebar in virtue theme, follow the steps below:-
Advertisements
- Open your functions.php file and copy and paste the code below at the bottom of the file.
/* Add sidebar for product details page */ function kad_sidebar_on_product_page($sidebar) { if (is_product()) { return true; } return $sidebar; } add_filter('kadence_display_sidebar', 'kad_sidebar_on_product_page');
- Once you save the changes, refresh your product page and you will see the changes like below:-
Hope this helps!
Related posts:
WordPress Plugin Dev: How to send email using SMTP?
Woocommerce: Coupon for new customer / first order only
Woocommerce show product RSS feed by category and tags
WordPress Custom Taxonomy Pagination show 404 page not found error
WordPress WP-Cache with GZip Compression enable
WordPress Dev: How to send html email using wp_mail()?
How to change 'Out of Stock' text in Woocommerce
Woocommerce: How to bcc all order email to multiple recipients according to status
Share this with your friends:-