Category: Prestashop 1.7 (page 12 of 21)

How to set the default language in PrestaShop

In this article,  we’ll show you, how to set the default language in PrestaShop. Follow this simple guideline as shown below. Step 1: To set the default language, Login into PrestaShop Back-Office and navigate to International > Localization. Step 2: Scroll down to the Configuration section of the page and choose a language from the Default language drop-down…

How to Set Default Currency in PrestaShop

In this article,  we’ll show you, how to set the default currency in PrestaShop. Follow this simple guideline as shown below. Step 1: To set the default currency, Login into PrestaShop Back-Office and navigate to International > Localization. Step 2: Scroll down to the Configuration section of the page and choose a currency from the Default currency drop-down…

How to set the Time zone in PrestaShop

In this article,  we’ll show you, how to set the Time zone in PrestaShop. Follow this simple guideline as shown below. Step 1: To set the Time zone, Login into PrestaShop Back-Office and navigate to International > Localization. Step 2: Scroll down to the Configuration section of the page and choose an option from the Time zone…

How to Change Weight Unit in PrestaShop

In this article,  we’ll show you, how to change the Weight unit in PrestaShop. Follow this simple guideline as shown below. Step 1: To change the Weight unit, Login into PrestaShop Back-Office and navigate to International > Localization. Step 2: Scroll down to the Local units section of the page and change a unit as you want….

How to Change Distance Unit in PrestaShop 1.7

In this article,  we’ll show you, how to change the Distance unit in PrestaShop. Follow this simple guideline as shown below. Step 1: To change the Distance unit, Login into PrestaShop Back-Office and navigate to International > Localization. Step 2: Scroll down to the Local units section of the page and change a unit as you want….

How to Change Volume Unit in PrestaShop 1.7

In this article,  we’ll show you, how to change the Volume unit in PrestaShop. Follow this simple guideline as shown below. Step 1: To change the Volume unit, Login into PrestaShop Back-Office and navigate to International > Localization. Step 2: Scroll down to the Local units section of the page and change a unit as you want….

How to enable show notifications for new orders in PrestaShop

In this article,  we’ll show you, how to enable show notifications for new orders in PrestaShop. Follow this simple guideline as shown below. Step 1: To enable show notifications for new orders, Login into PrestaShop Back-Office and navigate to Advanced Parameters > Administration. Step 2: Scroll down to the Notifications section of the page and set Show…

How to Change Dimension Unit in PrestaShop 1.7

In this article,  we’ll show you, how to change the Dimension unit in PrestaShop. Follow this simple guideline as shown below. Step 1: To change the Dimension unit, Login into PrestaShop Back-Office and navigate to International > Localization. Step 2: Scroll down to the Local units section of the page and change a unit as you want….

How to get sub-categories from parent category id in PrestaShop 1.7

In this post I am going to explain how to get sub-categories from parent category id in PrestaShop 1.7.   // Your Product id $id_parent_category = 3; // Fetch parent category $categoryObj = new Category($id_parent_category); // Validate category object if (Validate::isLoadedObject($categoryObj)) { $categoryList = $categoryObj->getSubCategories($this->context->language->id); if ($categoryList && count($categoryList) > 0) { foreach ($categoryList AS…

How to add remote javascript & stylesheet in PrestaShop 1.7

In this post I am going to explain how to add remote javascript & stylesheet in PrestaShop 1.7. In PrestaShop 1.7+, it’s easy to register custom assets on each pages. The major improvement is that you can easily manage them from your theme, without any modules. Lets see how to registering & unregistering javascript as…

Older posts Newer posts