File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
app/design/frontend/base/default/template/rekko Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ $enabled = Mage::getStoreConfig('advanced/modules_disable_output/' . $moduleName
1919 window.convert_cart = {};
2020 convert_cart.shoppingCartItems = new Array();
2121 }
22- <?php foreach ($ products as $ items ) { ?>
22+ <?php foreach ($ cartItems as $ item ) { ?>
2323 var convert_item = {};
24- convert_item.sku = "<?php echo $ items ['sku ' ]; ?> ";
25- convert_item.category = "<?php echo $ items ['category ' ]; ?> ";
26- convert_item.quantity =<?php echo $ items ['qty ' ]; ?> ;
27- convert_item.price =<?php echo $ items ['price ' ]; ?> ;
24+ convert_item.sku = "<?php echo $ item ['sku ' ]; ?> ";
25+ convert_item.category = "<?php echo $ item ['category ' ]; ?> ";
26+ convert_item.quantity =<?php echo $ item ['qty ' ]; ?> ;
27+ convert_item.price =<?php echo $ item ['price ' ]; ?> ;
2828 convert_cart.shoppingCartItems.push(convert_item);
2929 <?php } ?>
3030 </script>
You can’t perform that action at this time.
0 commit comments