-
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
Prestashop: Allow wildcard search
Source: https://www.prestashop.com/forums/topic/280306-native-prestashop-search-module-issuessolved-casesimprovementsother/ The search index indexes on individual words and as it is now, wants you to give a search word from the beginning of the word. To fix this, we need to edit the file Classes/Search.php to fix this, … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: Allow wildcard search
Prestashop: How to make home slider fade in version 1.6
Open yourdomain/themes/yourtheme/js/modules/homeslider/js/homeslider.js and change this: if (!!$.prototype.bxSlider) $(‘#homeslider’).bxSlider({ useCSS: false, maxSlides: 1, slideWidth: homeslider_width, infiniteLoop: homeslider_loop, hideControlOnEnd: true, pager: false, autoHover: true, auto: homeslider_loop, speed: homeslider_speed, pause: homeslider_pause, controls: true }); to this if (!!$.prototype.bxSlider) $(‘#homeslider’).bxSlider({ useCSS: false, maxSlides: 1, … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: How to make home slider fade in version 1.6
Prestashop: contentBox HTML module
Description: contentBox is a very simple, very intuitive and very powerful Prestashop Module. With contentBox you can add html blocks to prestashop, JAVASCRIPT + CSS blocks anywhere you want inside Prestashop 1.5 or Prestashop 1.6. Link: http://contentbox.org/ Works great for … Continue reading
Posted in CMS, ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop: contentBox HTML module
Prestashop 1.6: Get id_customer and getDefaultGroupId
Source: http://stackoverflow.com/questions/16231440/how-to-get-prestashop-current-user-id Example: $id = (int)$this->context->customer->id; $id_default_group = Customer::getDefaultGroupId((int)$id);
Posted in ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop 1.6: Get id_customer and getDefaultGroupId
Prestashop 1.6: how to centralise logo in new theme
Source: http://www.prestashop.com/forums/topic/318418-solved-center-logo-in-new-theme-16/ open header.tpl file (located in your theme dir) and remove this code: <div id=”header_logo”><a title=”{$shop_name|escape:’html’:’UTF-8′}” href=”{$base_dir}”> <img src=”{$logo_url}” alt=”{$shop_name|escape:’html’:’UTF-8′}” width=”{$logo_image_width}” height=”{$logo_image_height}” /> </a></div> then go to /themes/default-bootstrap/modules/blocksearch/blocksearch-top.tpl and paste code that you removed at the end of the … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop 1.6: how to centralise logo in new theme
Prestashop 1.6 Upgrading from old version, product images not showing
Solution: http://www.prestashop.com/forums/topic/271091-images-not-showing-after-upgrading-1550 Preferences > Images 1) Set Use the legacy image filesystem to YES 2) Click Move images Wait for the process to complete. 3) Set Use the legacy image filesystem back to NO Should solve the problem of missing … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop 1.6 Upgrading from old version, product images not showing
Prestashop 1.6: enable collation_database for creating tables
DB tables created with a collation different than the database collation http://www.prestashop.com/forums/topic/363458-fresh-install-doesnt-prestashop-respect-the-existing-database-collation/ Solution: http://forge.prestashop.com/browse/PSCSX-3486
Posted in ecommerce
Tagged bug-fix, prestashop, prestashop 1.6
Comments Off on Prestashop 1.6: enable collation_database for creating tables
Prestashop: Category Quantity Discount
Apply Quantity Discounts across all products in a category Prestashop 1.2 – 1.3 Source: http://www.prestashop.com/forums/topic/75558-mod-quantity-discounts-for-all-the-products-in-the-same-default-category/ Prestashop 1.4 – 1.6 Source: http://www.prestashop.com/forums/topic/140803-free-module-category-quantity-discount-apply-quantity-discounts-across-all-products-in-a-category/ Quantity discount is calculated based on the price of product. For promotion mechanics below, if we use the built-in … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.3
Comments Off on Prestashop: Category Quantity Discount
Prestaship 1.3 Force default currency for checkout
Source: http://www.prestashop.com/forums/topic/9473-module-force-currency/ Note: Error in amount shown in store owner email but is correct in customer email. Use with caution. in init.php before: $currency = Tools::setCurrency(); add: $cookie->id_currency = intval(Configuration::get(‘PS_CURRENCY_FRONT_DEFAULT’)); in admin/tabs/AdminCurrencies.php after: ‘PS_CURRENCY_DEFAULT’ => array(‘title’ => $this->l(‘Default currency:’), ‘desc’ … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.3
Comments Off on Prestaship 1.3 Force default currency for checkout
Prestashop 1.6: Delete all sample data
1) Remove statistics information from dashboard. Click NO to ‘Demo Mode’ on your Dashboard. It’s on the lower right hand side. 2) Remove all sample and demo orders, catalog etc from the database Go to the “Modules > Modules” page. … Continue reading
Posted in ecommerce
Tagged prestashop, prestashop 1.6
Comments Off on Prestashop 1.6: Delete all sample data