-
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
Author Archives: admin
Prestashop: Add tags to the product list
Source: http://nemops.com/prestashop-product-list-tags/#.XPt5M7hS-Ul 1) Product.php class (use override) Insert code at the last part of public static function getProductProperties($id_lang, $row, Context $context = null) /* add product tags to product list */ $row[‘tags’] = array(); $tags = Tag::getProductTags($row[‘id_product’]); //show product tags … Continue reading
Posted in templates
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: Add tags to the product list
Prestashop: Remove View Grid/List buttons from Product Listing
Source: https://www.prestashop.com/forums/topic/337353-remove-view-gridlist-bottons/ Open themes/yourtheme/product-sort.tpl and find this code: <ul class=”display hidden-xs”> <li class=”display-title”>{l s=’View:’}</li> <li id=”grid”><a rel=”nofollow” href=”#” title=”{l s=’Grid’}”><i class=”icon-th-large”></i>{l s=’Grid’}</a></li> <li id=”list”><a rel=”nofollow” href=”#” title=”{l s=’List’}”><i class=”icon-th-list”></i>{l s=’List’}</a></li> </ul> Delete it and buttons will gone.
Posted in templates
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: Remove View Grid/List buttons from Product Listing
Prestashop: fake customer registrations spam
Source: https://www.prestashop.com/forums/topic/981159-securite-spam-customer-account-solution-13-15/ within your class classes/Validate.php – either in the native code, or into an override, add this function public static function isCustomerName($name) { if (preg_match(Tools::cleanNonUnicodeSupport(‘/www|http/ui’),$name)) return false; return preg_match(Tools::cleanNonUnicodeSupport(‘/^[^0-9!\[\]<>,;?=+()@#”°{}_$%:\/\\\*\^]*$/u’), $name); } Then modify inside classes/Customer.php ‘lastname’ => array(‘type’ => … Continue reading
Posted in troubleshoot
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: fake customer registrations spam
Acrobat X Pro: PDF Flattener Preview bug workaround
Tried to outline fonts inside Illustrator and the PDF exported shows random distortions like wider Ls here and there. If we export the file as a PDF with the fonts as is, there are no issues. However, have encountered printers … Continue reading
Posted in Adobe, troubleshoot
Tagged adobe acrobat, illustrator
Comments Off on Acrobat X Pro: PDF Flattener Preview bug workaround
Prestashop: Searching orders by the products they contain via mysql
Source: https://www.prestashop.com/forums/topic/437518-searching-orders-by-the-products-they-contain/?tab=comments#comment-2033625 SELECT product_id, product_attribute_id, product_name, GROUP_CONCAT(id_order SEPARATOR ‘, ‘) AS orders FROM ps_order_detail group by product_name order by product_id, product_attribute_id Can add where product_id = to the number you want to narrow down the specific product SELECT product_id, product_attribute_id, … Continue reading
Posted in database
Tagged mysql, prestashop, prestashop 1.6
Comments Off on Prestashop: Searching orders by the products they contain via mysql
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