Posts

Showing posts from March, 2017

There are no carriers that deliver to the address you selected(prestashop)

Image
Configuration of carriers section Open the shipping -> carriers tab in your back office, select carrier that you want to edit and scroll page to "Zone" section. You must select correct zones, where you want to send products via selected carriers. For example, if you don't select "Europe" in zones section - carrier that you edit will not be available in shipping step in order process - even if european countries are turned to on in Localization -> Countries section. So - It's important to select ZONES correctly. After that save carrier settings and it's all. Now your customers can select correct shipping method in order process. If you've got any questions - feel free to write comment below. We will help you!

PrestaShop 1.6.x. How to change the order of Popular, New Arrivals, Best Sellers tabs on the Home page

Image
This tutorial will show you how to change the order of products tabs on the  Home  page in  PrestaShop 1.6.x. Open your PrestaShop admin panel and navigate to  Modules -> Positions . Locate the  displayHomeTab  position: In the  displayHomeTab  you can rearrange the position of the tabs simply by dragging and dropping them into position you want them to appear on the  Home  page. Let’s make the  Popular   tab  the last one by placing the  Featured products on the home page  block after the  Top-sellers  block: Popular   tab  is displayed the last one now: Thank you for watching our tutorial. Now you know how to change the order of products tabs on the  Home  page in  PrestaShop 1.6.x . Feel free to check the detailed video tutorial below: PrestaShop 1.6.x. How to change the order of Popular, New Arrivals, Best Sellers tabs on the Home page

re-hook module in preshtashop

Make sure module is installed and then go to: Modules --> Positions --> +Transplant a module -->Select the module you want to add and then "Hook Into" Left/Right Column etc. If you need the module to show up a place it won't let you transplant to you need to tweak the php file in the module folder. Hope it helps and good luck =) 

How to Unhook and remove modules from PrestaShop 1.6 StoreFront

Image
Hover over  Modules  in the menu on the left hand side of the screen. Click on  Positions . Scroll down the  Positions  screen until you find the block / modules that you wish to remove. Click on the drop-down arrow to the right of the word "Edit", then click on  Unhook  in order to remove the module. Note:   Modules that are removed from the Storefront are   not   deleted. They are simply removed from view. Once you remove you a module, you would need to use the   Transplant a module   option in order in order to get it back.

PrestaShop 1.6.x. How to manage the Themeconfigurator module

Image
This tutorial shows how to manage the  "Themeconfigurator"   module Open site admin panel and go to  Modules and Services  section. Find the  Theme configurator   module  and click  Configure . We can see a list of settings. You can enable/disable particular setting using the  yes/no  switcher. Display links to your store’s social accounts (Twitter, Facebook, etc.)  section allows to configure social accounts. Click on  Configure  in order to configure the appropriate settings. We can see a list of social networks and URLs. You can remove the link in order to hide a  social icon . Save changes after all the modifications have been performed. This is how social networks appear in our template (availability of networks depends on the template). Let’s change contact information. Click on  Configure  in  Display your contact information  setting. Change contact details and save changes. You can also configure social sharing buttons on the product’s page us

Re: Cannot upload images - warning directory does not exist

In my case the sulution was: It appeared that in both config.php files (in root and admin dirctories) all the entries (including /image) were: /..../...../provider-name/user-name/domain-name/htdocs//image/') - meaning two // instead of one /. Possibly it is the bug in the OpenCart installation script. I've changed ALL // to / in both files. Now it works fine.

OpenCart 2.x. How to manage sidebars

Image
Access OpenCart admin panel, go to  System menu -> Design -> Layouts   tab  to add/delete  sidebar  box. The  Layout   tab  offers variety of pages to which you can assign existing positions. Select the  layout  you would like to edit, for example the  Contact  Layout . Click the  Edit icon  next to it to start customization: In order to add a new  module , click the  “+”  icon under the  Module /Position/Sort Order   tab . Select  Module  under  Modules  column, assign position using the  Position  drop-down menu and set  module  order in the  Sort Order  column: To delete modules from  sidebar  or any other position, click the  “-“  icon. Make sure to save the changes with the  Save icon  in the top right corner. In case the  sidebar  is missing on the page, you can create one by selecting the appropriate  layout  under the  System -> Design -> Layouts   tab  of OpenCart admin panel. Click the  Plus icon  under the  Module /Position/Sort order   tab . Sele

Warning: You do not have permission to access the API! OC2

Make sure you have applied all Access and Modify permissions to your user group. To do this, go to: Admin CP > System > Users > User Groups > Administrator [edit] > Select all Access and Permissions and click save.
before opencart 2.2 version if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/product/category_' . $category_id . '.tpl')) { $this->template = $this->config->get('config_template') . '/template/product/category_' . $category_id . '.tpl'; } elseif (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/product/category.tpl')) { $this->template = $this->config->get('config_template') . '/template/product/category.tpl'; } else { $this->template = 'default/template/product/category.tpl'; } opencart 2.2 version onwards Since Opencart changed its method from 2.2 that code doesn't work anymore, you can modify it like this: First we must know which theme is active, store its name in a variable $config_theme = $this->config->get('config_theme') == 'theme_default' ? 'd