n_j24 Posted July 3, 2013 Share Posted July 3, 2013 Buenas tardes, soy nuevo utilizando el sisteme y me gustaria saber quien puede ayudarme para configurar el modulo gift voucher Es decir como hago para acceder para realizar estos cambios que me exige el modulo Your theme must display "Top" hook ("Top of pages") (you must have {$HOOK_TOP} markup in your template). You must edit "ajax-cart.js" file (in "/modules/blockcart/" directory) add this line : giftvoucher.addToCart(jsonData); in the "updateCart" function, before the line : ajaxCart.updateCartEverywhere(jsonData); You must edit "Cart.php" file (in "/classes/" directory) and add these lines: include_once(dirname(__FILE__).'/../modules/giftvoucher/giftvoucher.php'); $dgv = new GiftVoucher(); if ($dgv->checkFreeShippingPriceCart($this)) return 0; in the "getPackageShippingCost" function, after the line: $free_fees_price = 0; Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted July 3, 2013 Share Posted July 3, 2013 Buenas tardes, soy nuevo utilizando el sisteme y me gustaria saber quien puede ayudarme para configurar el modulo gift voucher Es decir como hago para acceder para realizar estos cambios que me exige el modulo Your theme must display "Top" hook ("Top of pages") (you must have {$HOOK_TOP} markup in your template). You must edit "ajax-cart.js" file (in "/modules/blockcart/" directory) add this line : giftvoucher.addToCart(jsonData); in the "updateCart" function, before the line : ajaxCart.updateCartEverywhere(jsonData); You must edit "Cart.php" file (in "/classes/" directory) and add these lines: include_once(dirname(__FILE__).'/../modules/giftvoucher/giftvoucher.php'); $dgv = new GiftVoucher(); if ($dgv->checkFreeShippingPriceCart($this)) return 0; in the "getPackageShippingCost" function, after the line: $free_fees_price = 0; En español, dice que tu tema tiene que tener imprimido el hook: {$HOOK_TOP} normalmene en el header.tpl va impreso el hook, por lo que supongo que ya estara puesto en la plantilla que usas. Dice, que debes editar el fichero: ajax-cart.js del directorio: /modules/blockcart/ y añadir esta linea: giftvoucher.addToCart(jsonData); antes de esta: ajaxCart.updateCartEverywhere(jsonData); Despues, dice que tienes que editar el fichero: /classes/Cart.php y añadir estas lineas: include_once(dirname(__FILE__).'/../modules/giftvoucher/giftvoucher.php'); $dgv = new GiftVoucher(); if ($dgv->checkFreeShippingPriceCart($this)) return 0; dentro de la función: getPackageShippingCost despues de: $free_fees_price = 0; Link to comment Share on other sites More sharing options...
n_j24 Posted July 8, 2013 Author Share Posted July 8, 2013 muchas gracias, pero el problema es que no se como o donde abrir para editar el fichero "ajax-cart.js" ni los directorios ( /modules/blockcart/; o /classes/Cart.php) Link to comment Share on other sites More sharing options...
nadie Posted July 8, 2013 Share Posted July 8, 2013 muchas gracias, pero el problema es que no se como o donde abrir para editar el fichero "ajax-cart.js" ni los directorios ( /modules/blockcart/; o /classes/Cart.php) Hola, Buenas noches ! Los ficheros que te ha mencionado Rubalcaba, los puedes bajar desde tu tienda, por ejemplo con https://filezilla-project.org/ (Filezilla) conectandote al FTP, o tambien desde el panel de tu hosting, posiblemente tengas acceso webftp. Si te los bajas a tu equipo, recuerda abrirlos con notepad++ http://notepad-plus-plus.org/ para modificarlos. Link to comment Share on other sites More sharing options...
Recommended Posts