-
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
Category Archives: templates
Prestashop: change to 2 columns product listing for bootstrap theme in mobile
Additional issue: because it is now 2 columns, and the original one column layout, height is not fixed, sometimes some products require more height, while some are shorter. When split side by side, this causes the grid to be broken … Continue reading
Posted in ecommerce, templates
Tagged prestashop 1.6
Comments Off on Prestashop: change to 2 columns product listing for bootstrap theme in mobile
Prestashop: remove PayPal logo from right column
Solution: https://www.prestashop.com/forums/topic/249896-solved-how-do-i-remove-the-paypal-logo-from-my-home-page/?tab=comments#comment-1241457 open the file: (paypal module directory) views/templates/hook/column.tpl and remove the content of this file And/or: https://www.prestashop.com/forums/topic/255741-solved-how-to-remove-paypal-logo/?tab=comments#comment-2010062 unhook the PayPal module from the right column on my template. This is in the Modules – Positions.
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: 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