Category: PrestaShop Tutorials (page 12 of 14)

How to check if customer is logged in or not in PrestaShop 1.7?

In this post I am going to explain how to check customer is logged in or not in PrestaShop 1.7. 1) Inside module or controller file (php) if ($this->context->customer->isLogged()) { echo “Logged In”; // Do something here } else { echo “Not Logged In”; // Do something here } 2) Inside template file (tpl) {if…

How to show cover image of your product with combination in PrestaShop 1.7?

In e-Commerce business, Product image is a vital aspect, to attract a visitor’s eye in the first place. In PrestaShop 1.7, If you have combination product then PrestaShop shows image of the one selected by default in product combination instead of the generic (Cover) image of your product. Do you want to show generic (Cover)…

How to Add Facebook Page Widget in PrestaShop

Putting your social profiles on your website is a must these days and having a Facebook like page will help your website visitors engage with you on your Facebook page as well. Facebook page widget allows you to show content from any public Facebook page. If you run a business page on Facebook you can…

How to Change Position of Modules in PrestaShop 1.7?

In order to change the position of module, please read below steps. 1. Go to Back-office > Design > Positions: On the position page you will find the list of module in each hooks. 2. Now, Just drag and drop or use up and down arrows to change position within a hook. Changes will be…

How To Add New Employees and Setup Permissions in PrestaShop 1.7?

As the shop owner, to make management process easier, this is something that you have to do. You can create individual accounts to allow right kind of access to every employee. To add new employees and set up permissions, Follow the below guide: Go to: Back-office > Advanced Parameters > Team. This page will show…

How to Setup Currencies in PrestaShop 1.7?

In PrestaShop 1.7, you can setup multiple currencies. To allow customers to shop in their local currency, you need to add multiple currency in PrestaShop 1.7. In order to add new currency go to: Back-office > Localization > Currencies tab and click the “Add new currency” button. Currency: Select the currency to add from the…

How to Display Menu Thumbnails in PrestaShop 1.7 Main Menu?

Default Classic template does not allow to display menu thumbnail image on front-office. To display menu thumbnails in the main menu you need to just follow the below steps. Go to: Theme root directory > modules > ps_mainmenu > ps_mainmenu.tpl Now, Copy the below code. {if $node.image_urls|count} {foreach from=$node.image_urls item=image_url} {/foreach} {/if} Then place it…

List of hooks on Product Page in PrestaShop 1.7

Hooks in PrestaShop is the most important component for inserting modules into your theme. PrestaShop 1.7 contains many changes, these changes affects each available visible part of the shop, also from technical point of view. In this new version PrestaShop 1.7.x has many new hooks, some of old hooks are not available anymore. In order…

How to Change Database Connection in PrestaShop 1.7?

While, you are moving to new domain you may need to change database setting. In this tutorial, I will guide you to change database setting in PrestaShop 1.7. Top Free PrestaShop 1.7.5 Themes for 2019 Follow the below steps to: Connect to FTP server or file manager and open the file: /app/config/parameters.php Find the parameters…

How to Enable Debug mode (Error Reporting) in PrestaShop 1.7?

Many times, you may face the untypical behavior on your website like blank screen, error 500. In such cases, in order to nail down the cause of the problem, you might need to enable debug mode (error reporting) for outputting debugging information such as warnings, errors etc. Top Free PrestaShop 1.7.5 Themes for 2019 Before…

Older posts Newer posts