سلام
من جوم شاپینگ رو نصب کردم و ماژول اخرین محصولات جوم شاپینگ رو هم نصب کردم اما وقتی در ماژول اخرین محصولات روی دکمه "افزودن به سبد خرید" کلیک میکنم هیچ اتفاقی نمی افته و محصول به سبد اضافه نمیشه
کد php ماژول:
<style type="text/css">
div.block_item{
float:right;
margin:5px;
padding:5px;
border:1px solid #cecece;
background:#f6f6f6;
text-align:center;
-webkit-border-radius: 3px;
border-radius: 3px;
margin-top:15px;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
width: <?php echo $item_width;?>px;
}
div.block_item:hover{
-webkit-box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
div.item_image{
border:1px solid #b5b5b5;
background:#FFFFFF;
padding:5px;
}
</style>
<div class="latest_products">
<?php foreach($last_prod as $curr){ ?>
<div class="block_item">
<?php if ($show_image) { ?>
<div class="item_image">
<a href="<?php print $curr->product_link?>"><img src = "<?php print $jshopConfig->image_product_live_path?>/<?php if ($curr->product_thumb_image) print $curr->product_thumb_image; else print $noimage?>" alt="" /></a>
</div>
<?php } ?>
<div class="item_name">
<a href="<?php print $curr->product_link?>"><?php print $curr->name?></a>
</div>
<?php if ($show_price) { ?>
<div class="item_price">
<a href="<?php print $curr->product_link?>"><?php print formatprice($curr->product_price);?></a>
</div>
<?php } ?>
<?php if ($addtocart) { ?>
<div class="item_cart">
<a href="<?php print $item->addtocart?>">افزودن به سبد خرید</a>
</div>
<?php } ?>
</div>
<?php } ?>
</div>