suggestions?
item_list.tpl (store module)
{jrCore_module_url module="jrStore" assign="murl"}
{if isset($_items)}
<div class="container" xmlns="http://www.w3.org/1999/html">
<div class="row">
{foreach from=$_items item="item"}
<div class="col2">
<div class="block_image">
<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.product_title_url}">{jrCore_module_function function="jrImage_display" module="jrStore" type="product_image" item_id=$item._item_id size="xlarge" class="iloutline img_scale" crop="auto" alt=$item.product_title width=false height=false}</a> <br>
<h2><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.product_title_url}">{$item.product_title}</a></h2><br>
<span class="info">Category:</span> <span class="info_c"><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/category/{$item.product_category_url}">{$item.product_category}</a></span><br>
{jrCore_module_function function="jrRating_form" type="star" module="jrStore" index="1" item_id=$item._item_id current=$item.product_rating_1_average_count|default:0 votes=$item.product_rating_1_count|default:0}<br>
{if isset($item.product_qty) && $item.product_qty > 0}
<br>
<span class="info_c">{jrCore_lang module="jrStore" id="42" default="Available Quantity"}: {$item.product_qty}</span>
{elseif isset($item.product_qty) && $item.product_qty === "0"}
<br>
<span class="info_c sold_out">{jrCore_lang module="jrStore" id="50" default="Sold Out"}</span>
{/if}
<br>
<br>
{if isset($item.product_qty) && $item.product_qty === "0"}
<span class="sold_out">{jrCore_lang module="jrStore" id="50" default="Sold Out"}</span>
{else}
{if $item.product_qty > 0}
{$quantity_max = $item.product_qty}
{else}
{$quantity_max = 9999}
{/if}
{jrCore_module_function function="jrFoxyCart_add_to_cart" module="jrStore" field="product" item=$item quantity_max=$quantity_max}
{/if}
<br><br>
{jrCore_module_function function="jrFoxyCartBundle_button" module="jrStore" field="product" item=$item}
{jrCore_item_update_button module="jrStore" profile_id=$item._profile_id item_id=$item._item_id}
{jrCore_item_delete_button module="jrStore" profile_id=$item._profile_id item_id=$item._item_id}
</div>
<div class="clear"></div>
</div>
{/foreach}
</div>
</div>
{/if}
updated by @dazed: 10/18/14 03:02:10PM