mohamedali Posted March 11, 2014 Share Posted March 11, 2014 (edited) hi all, when i going to delete products in cart block it removed and work as fine... but if i delete a product from cart summary page, it removes product from summary list but not update cart block it give error ReferenceError: currencyFormat is not defined in /cart-summary.js. please help... mysite link :http://kumudhamstore.com/index.php? Edited March 12, 2014 by mohamedali (see edit history) Link to comment Share on other sites More sharing options...
humanoidvani Posted March 11, 2014 Share Posted March 11, 2014 hi all, when i going to delete products in cart block it removed and work as fine... but if i delete a product from cart summary page, it removes product from summary list but not update cart block it give error ReferenceError: currencyFormat is not defined in /cart-summary.js. please help... mysite link :http://kumudhamstore.com/index.php? . I think that your problem is that you have variables assign in one line like this (you can find it in /themes/onlinestore/shopping-cart.tpl, around line: 45): <script type="text/javascript"> // <![CDATA[ var currencySign = 'Rs. '; var currencyRate = '1'; var currencyFormat = '1'; var currencyBlank = '1'; var txtProduct = "product"; var txtProducts = "products"; // ]]> </script> It should to be like this: <script type="text/javascript"> // <![CDATA[ var currencySign = 'Rs. '; var currencyRate = '1'; var currencyFormat = '1'; var currencyBlank = '1'; var txtProduct = "product"; var txtProducts = "products"; // ]]> </script> 1 Link to comment Share on other sites More sharing options...
mohamedali Posted March 12, 2014 Author Share Posted March 12, 2014 hey thanks a lot... its working.. Link to comment Share on other sites More sharing options...
Recommended Posts