Okay
  Print

Warehouse theme

How to check theme version In backoffice go to modules > look for iqitthemeeditor module and check version. Theme version should also be visible in your backoffice dashboard. Theme version in design > themes shuld not be considered, since it is cache ...

[1.6] Theme installer gives me error 1. Make shure that you uploading theme .zip, not full zip package from themeforest  2. Connect to your FTP server and check the CHMOD of the folder: your_eshop/themes and set it to 777. Try to import.  3. Increase max upl ...

[1.6] How to translate theme You can use default prestashop translation: http://www.prestashop.com/en/translations Extract downloaded package and change theme name from “default-bootstrap” to “warehouse” and then upload it on ftp Guide about t ...

[1.6] Search return undefinied price without and no picture, no second image on hover Go to backoffice1. Advanced paramets >  Performance > Debug mode > disable all ovverides, set to no (and keep it that way) 2. Clear prestashop cache in Adnanced parametrs > pefrofmance and then if still will not work do fo ...

My Prestashop is slow Theme performance level is on same level as default theme. It follows all prestashop recomendations about cache etc. Speed issues, assets loads etc are not theme related and they are not covered by support.  PS You can g ...

[PS 1.7] Category page is empty The list of products per category is not displayed with the theme Warehouse.It is due the fact you probably have theme version 4.1.8 or newer and using prestashop older than 1.7.4.To solve you need to upgrade your prestashop ...

Checkout page broken - customer is logged out go to translations in backoffice , and find logut string translation(shop - theme - custommeraccount), it is broken it have [/ 1] instead [/1] in translated string, that cause checkput page is corrupted

[1.7] Removing sale or new labels on products You can do that with custom css in theme editor.sale-label, .new-label{display: none !important;}

How to enable debug mode Prestashop Enable dev mode to check actual error instead white page On your server, open the /config/defines.inc.php file.Find this line: define('_PS_MODE_DEV_', false);In this line, change "false" to "true".Save your changes.

[1.7] Elementor module is missing/not show content of CMS/Homepage/Product/Blog In backoffice > design > positions You need to hook elementor module to following hooks displayBlogElementor displayCMSDisputeInformation displayProductElementor displayCategoryElementor displayBackOfficeHeader displayH ...

How to create mutilanguage revolution slider It is needed to enaable multilang feature as on image

Revolution Slider - activation Revolution Slider is included in template thanks to extended license. With this license it is not possible to activate revolution slider module by Prestashop backoffice, but module without activation is FULLY FUNCTIONAL - ex ...

[1.7] Elementor not load - conflict with ups module If you use UPS shipping module, it is needed to change its settins as on screenshot

[1.6] Website brakes on mobile To fix you need to enable all CCC options for JS and CSS in backoffice > Advanced parametrs > performance

"Colissimo point de retrait" modal not visible It is becouse this module with own css files ovveride default css classes for boostrap, to fix it it is needed to ovveride it css file To do that create files in path themes/warehouse/modules/colissimo/views/css/colissimo. ...

[1.7] Viewed products or category products Module which show products from the same category on product page is https://github.com/PrestaShop/ps_categoryproducts Module which show viewed products on product page is https://github.com/PrestaShop/ps_viewedproduct/ ...

[1.6] Broken product list grid/blanks spaces Screenshot of problemGo to backoffice > preferences > images > scroll down and regenerate image thumbails for products and home_default image size, then clear browser cache

[1.7] Filtering not work - ps_facatedsearch 1. Filtering is core part of prestashop, it is module ps_facatedsearch in which you need to configure filter template2. If you configured filter template and it is visible but not working it is very possible that it is double ...

[1.7] How to hide titles on CMS pages you can hide with custom css code(you can paste code in backoffice > themeeditor > custom css field) #cms .page-header { display: none; } or if you want to hide only for one cms page then you need to base on cms page id. ...

How to change header icons you need to change them with own custom cssExample for cart icon #header .fa-shopping-bag:before{ content: " code of icon" !important; } or with background #header .fa-shopping-bag:before{ content: url(image.jpg) !imp ...

[1.7] Elementor widgets do no loaad on edit/problem with saving This problem need to be solved on server configuration. Please check yourself or ask your host support about mod_security disabled SubstituteMaxLineLength 10M IF you use PHP Fast CGI set  valuespm.max_children ...

[1.7] Elementor and themeeditor live module in multistore Since elementor and themeedifor-front use frontoffice preview as iframe it must be loaded on correct domain. for example if you have multistore with two domain www.shop1.com www.shop2.com and your backoffice url is w ...

[PS 1.7] Cart is not refresh or showed twice If shopping cart do not work corectly in your shop then make sure ps_shoppingcart module is installed, enabled and inside module configuration ajax cart is enabled If above not solve or If your shopping cart is visible twi ...

[PS 1.6] Layered navigation urls problems 1. uninstall blocklayered module 2. uninstall blocklayered_mod module 3. remove themes/warehouse/modules/blocklayered_mod folder 4. install blocklayered_mod module only 5. translate https://iqitcommerce.ticksy.com/articl ...

[PS 1.7] Page not found on modules controllers Sometimes(mostly if installation of template was made on ps version older than 1.7.4) there is a problem with module controllers in backoffice. To fix it perform following 1. Upgrade ps to latest version 2. Put fix_tabs. ...

Manual instagram fix if you do not want to ugrade theme to fix instagram feed, you can modify following files manually add code 'iqit_elementor_inst_token' => array( 'title' => $this->l('Instagram access token') ...

ps_categoryproducts/ps_viewedproducts - price only on first product It is bug with prestashop cache itself, to fix it is needed to disable cache for module Forps_categoryproducts modules/ps_categoryproducts/ps_categoryproducts.php change renderWidget method to public function rende ...

[1.7] Elementor product description tab not visible when default description field empty You need to add fake desciption to default description field. To add fake invisible description add code like in html editor .

Hide product details tab To hide  "product details" tab on product page is needed to add custom css in themeeditor #product-details, #product-details-tab-nav{ display: none !important; }