-
Recent Posts
Recent Comments
Archives
- August 2020
- March 2020
- December 2019
- July 2019
- June 2019
- May 2019
- March 2019
- August 2018
- July 2018
- May 2018
- March 2018
- September 2017
- August 2017
- May 2017
- April 2017
- January 2017
- November 2016
- October 2016
- September 2016
- August 2016
- June 2016
- May 2016
- April 2016
- November 2015
- October 2015
- September 2015
- August 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
Categories
Meta
Tag Archives: prestashop 1.6
Prestashop: Warehouse theme mobile menu disable link on category parent
File edits are uploaded on: modules/iqitmegamenu/iqitmegamenu.php override/modules/iqitmegamenu/iqitmegamenu.php themes/warehouse/js/modules/iqitmegamenu/js/mlpushmenu.js 1) modules/iqitmegamenu/iqitmegamenu.php changed private function generateCategoriesMenu($categories, $depth_limit, $depth = 0) to protected function generateCategoriesMenu($categories, $depth_limit, $depth = 0) Overrides do not work on private functions. Could have just edited the whole file … Continue reading
Posted in ecommerce, modules
Tagged prestashop 1.6, warehouse theme
Comments Off on Prestashop: Warehouse theme mobile menu disable link on category parent
Prestashop: Fix layered navigation block doesn’t keep order position of filters
Solution: https://www.prestashop.com/forums/topic/317265-layered-navigation-block-dont-keep-order-position/?do=findComment&comment=2128180 https://github.com/musicpanda/blocklayered/commit/c53257c6cefcf5551d1f3cd51268fde658c1ad6b?diff=unified Info: It repairs one file: blocklayered_admin.js in the module /modules/blocklayered/blocklayered_admin.js If you’re using other themes look for the corresponding file to make the change e.g. warehouse theme /modules/blocklayered_mod/blocklayered_mod_admin.js look for if (typeof filters !== ‘undefined’) { filters … Continue reading
Posted in troubleshoot
Tagged block layered module, modules, prestashop 1.6
Comments Off on Prestashop: Fix layered navigation block doesn’t keep order position of filters
Prestashop: How to add the invoice number to the backoffice orders grid
Source: https://www.prestashop.com/forums/topic/300119-solved-how-to-add-the-invoice-number-to-the-orders-grid/?do=findComment&comment=1517949 Try to start with adding another array item to $this->fields_list add code to: /controllers/admin/AdminOrdersController.php ‘invoice_number’ => array( ‘title’ => $this->l(‘Rechnung-Nr: ‘), ‘width’ => 50 ),
Posted in ecommerce
Tagged prestashop 1.6
Comments Off on Prestashop: How to add the invoice number to the backoffice orders grid
Prestashop: How to create admin controller to add link of module to backoffice menu
Troubleshoot: PrestaShop Admin Module Controller Not Found https://stackoverflow.com/questions/37984270/prestashop-admin-module-controller-not-found Whenever this happened to me was because I hadn’t created a menu entry for my new controller. What I’d advise you to do is to go to Administration > Menus then created … Continue reading
Posted in troubleshoot
Tagged prestashop 1.6
Comments Off on Prestashop: How to create admin controller to add link of module to backoffice menu
Prestashop: Add style number to product page
Using warehouse theme. When product has combinations, the SKU is shown. I wanted to also show the main product style number for easy reference. https://www.prestashop.com/forums/topic/605088-slovedhow-to-show-reference-numbers-on-product-page/?do=findComment&comment=2540332 {l s=’Style:’} {$product->reference|escape:’html’:’UTF-8′} There are 2 locations to add in ware theme product.tpl
Posted in ecommerce, templates
Tagged prestashop 1.6
Comments Off on Prestashop: Add style number to product page
Prestashop 1.6: Breadcrumb to display the category that product is currently in (not its default category)
Update 20190608: Due to SEO concern, the friendly url of product is configured to not show subcategories, i.e. domain.com/product-name-1234.html so the following solution does not work as it uses the subcategories in the friendly url as reference Source: https://www.prestashop.com/forums/topic/167513-how-to-show-the-full-breadcrumb-to-the-default-category-on-every-product-page/?do=findComment&comment=2684341 Function … Continue reading
Posted in ecommerce
Tagged breadcrumb, prestashop 1.6
Comments Off on Prestashop 1.6: Breadcrumb to display the category that product is currently in (not its default category)
Prestashop: Fix pagination error on Attributes and Features in Backoffice
https://github.com/PrestaShop/PrestaShop/pull/8638/files https://www.prestashop.com/forums/topic/554037-possible-bug-on-product-attributes-list-pagination-in-1616/ https://www.prestashop.com/forums/topic/507337-backoffice-pagination-error-in-products-attribute-section/ Hi, i fixed this by adding a short code to ‘AdminAttributesGroupsController.php’ in /controllers/admin/ public function setRedirectAfter($url) { $addUrl = ”; if(Tools::isSubmit(‘viewattribute_group’) && Tools::getValue(‘id_attribute_group’)) { $addUrl = ‘&viewattribute_group&id_attribute_group=’ . Tools::getValue(‘id_attribute_group’); } $this->redirect_after = $url . $addUrl; } Function … Continue reading
Posted in troubleshoot
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: Fix pagination error on Attributes and Features in Backoffice
Prestaship 1.6 Fix for Contact form invulnerable to spam bots
Contact form is vulnerable to spam bot. Captcha does not help in this case. Fix here – https://github.com/PrestaShop/PrestaShop/pull/8168/files Useful information on how to build an anti spam bot contact form without captcha http://www.nfriedly.com/techblog/2009/11/how-to-build-a-spam-free-contact-forms-without-captchas/ Update: Doesn’t work well against some automated … Continue reading
Posted in troubleshoot
Tagged prestashop, prestashop 1.6
Comments Off on Prestaship 1.6 Fix for Contact form invulnerable to spam bots
Prestashop: Export Pro for products, categories, combinations (paid module)
Recommended: https://www.prestashop.com/forums/topic/429028-module-export-pro-csv-export-products-combinations-customers-categories-orders-addresses/ Free version with less features: https://www.prestashop.com/forums/topic/37900-free-module-products-export-module-v253-updated-23032016/
Posted in ecommerce, modules
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: Export Pro for products, categories, combinations (paid module)
Prestashop: Add editable product date added field in admin (prestashop 1.6)
Source: https://www.prestashop.com/forums/topic/126518-change-date-for-products-in-bo-date-add/?p=1947106 Add it to line 134 of: admin folder\themes\default\template\controllers\products\informations.tlp The if is added in case this is a new product and there is no existing date added data {if $product->date_add} <div class=”form-group”> <label class=”control-label col-lg-3″></td> <span class=”label-tooltip” data-toggle=”tooltip” title=”{l … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: Add editable product date added field in admin (prestashop 1.6)