Hook to display element as product on category page
You have to override the shop loop to insert something between some products. The file where the loop happens is wp-plugins/woocommerce/templates/archive-product.php (this one). Override it using this guide and do something like this $counter = 0; while ( have_posts() ) { if($counter == 5){ //if you want your code between the 5th and the 6th … Read more