-
Hi guys, is there any way we could get woocommerce support for the vlogger theme? It looks like hooks need to be added as per this documentation:
https://docs.woocommerce.com/document/third-party-custom-theme-compatibility/
I’m going to try duplicating page.php and editing it
I created woocommerce.php with the following code and it works… sort of:
<?php /* Package: Vlogger */ ?> <?php get_header(); ?> <?php get_template_part( 'phpincludes/menu'); ?> <!-- ======================= MAIN SECTION ======================= --> <div id="maincontent" <?php post_class("qt-main qt-paper"); ?>> <?php woocommerce_content (); ?> <!-- ======================= MAIN SECTION END ======================= --> <?php get_template_part ('phpincludes/footerwidgets'); ?> <?php get_footer(); ?>Check out the result here:
http://evanandkatelyn.com/product/ek-tshirts/The main problem is that it is full width. Is there a way I could make it default or with widgets?
Hello!
Woocommerce integration is going to be scheduled on our roadmap for the next months. As I see you did a great job by yourself. In order to make it default as you want to try adding “qt-container” as follow<?php post_class("qt-container qt-main qt-paper"); ?>This should work for you.
Keep me updated about it.Andrea
The topic ‘WooCommerce support’ is closed to new replies.