Simple way to add each product feature in shopping cart page. 1. Change in controllers\ParentOrderController.php in line 244 after: protected function _assignSummaryInformations() { global $currency;…
Change in modules\blockcart\ajax-cart.js line 40 //for category product-list page ‘add’ button… $(‘.p_add .ajax_add_to_cart_button’).unbind(‘click’).click(function(){ var idProduct = $(this).attr(‘rel’).replace(‘ajax_id_product_’, ”); var qty = $(‘.qty_ajax_id_product_’+idProduct+’ input’).val(); ajaxCart.add(idProduct, null,…
1. Change in modules\blockcart\blockcart.tpl after line 125: {l s=’Tax’ mod=’blockcart’} {$tax_cost} add code: {l s=’Total without tax’ mod=’blockcart’} {$total_without_tax} 2. Change in modules\blockcart\blockcart.php after line…