NOT Using the Woo plugin.
Using the michelangelo theme with a child theme michelangelo-child and all is working fine.
Question;
How do I add a widget/slider to the home page similar to the new arrivals or best deals but showing products by category?
<!--NEW ARRIVALS-->
<div class="list-product new-arrivals">
<div class="container">
<div class="p-heading">
<div class="p-title">
<h3><?php _e( 'New arrivals', 'mic' ); ?></h3>
</div>
</div>
<div class="row">
<?php get_template_part( 'tpl/product/home/_arrivals' ); ?>
</div>
</div>
</div>
I tried to use the code below on the front-page.php but no success
<!--PRODUCT CATEGORIES-->
<div class="container">
<div class="row">
<?php get_template_part( 'tpl/blog/tpl/_select_category' ); ?>
</div>
</div>
Please advise.
Thank you.
Using the michelangelo theme with a child theme michelangelo-child and all is working fine.
Question;
How do I add a widget/slider to the home page similar to the new arrivals or best deals but showing products by category?
<!--NEW ARRIVALS-->
<div class="list-product new-arrivals">
<div class="container">
<div class="p-heading">
<div class="p-title">
<h3><?php _e( 'New arrivals', 'mic' ); ?></h3>
</div>
</div>
<div class="row">
<?php get_template_part( 'tpl/product/home/_arrivals' ); ?>
</div>
</div>
</div>
I tried to use the code below on the front-page.php but no success
<!--PRODUCT CATEGORIES-->
<div class="container">
<div class="row">
<?php get_template_part( 'tpl/blog/tpl/_select_category' ); ?>
</div>
</div>
Please advise.
Thank you.