I have this code in my template:
<div class="container">
<div class="span12 first">
<div class="span3 first">
<?php
$content = '[spb_products_mini title="Hot New Gifts" product_cat="13" item_count="3" width="1/4" el_position="first last"]';
echo do_shortcode($content);
?>
</div>
<div class="span3">
<?php
$content = '[spb_products_mini title="Best of The Month Clubs" product_cat="14" item_count="3" width="1/4" el_position="first last"]';
echo do_shortcode($content);
?>
</div>
<div class="span3">
<?php
$content = '[spb_products_mini title="Unique Gift Baskets" product_cat="38" item_count="3" width="1/4" el_position="first last"]';
echo do_shortcode($content);
?>
</div>
<div class="span3 last">
<?php
$content = '[spb_products_mini title="Killer Gift Sets" product_cat="57" item_count="3" width="1/4" el_position="first last"]';
echo do_shortcode($content);
?>
</div>
</div>
</div>
and the different widgets are all loading the same three products, none of which mind the categories I’ve specified. I’ve also tried using the slug for the product_cat value, but that doesn’t work either. I’ve also tried it with setting the asset-type attribute, but I got the same results.
What am I missing?