Page 44 of 69

How to Add Search Terms in Magento 2

In this article we’ll show you, how to add Search Terms in Magento 2. Follow this simple guideline… Step 1: Get Started Login into Magento Admin Panel and from sidebar go to, Marketing > SEO & Search > Search Terms Step 2: Add Search Terms Now click on the Add New Search Term button. Here…

How to configure Popular Search Terms in Magento 2

In this article we’ll show you, how to configure Popular Search Terms in Magento 2. Follow this simple guideline… Step 1: Get Started Login into Magento Admin Panel and from sidebar go to, Store > Configuration Step 2: Configure Popular Search Terms Now from sidebar go to, Catalog > Catalog > Search Engine Optimization Expand…

How to Create New Category in Magento 2

In this article we’ll show you, how to create a new category in Magento 2. Follow this simple guideline… The category structure in Magento is like tree, with the root at the top. Each section of the tree can be expanded and collapsed. You can create as many additional subcategories as needed. Categories can be…

How to Change Default Welcome Message in Magento 2

In this article we’ll show you, how to change default welcome message in Magento 2. Follow this simple guideline… Step 1: Get Started Login into Magento Admin Panel and from sidebar go to, Content > Design > Configuration. Step 2: Edit Design Configuration Now click on Edit button. Step 3: Change Default Welcome Message Expand…

Magento 2 Product Types Explained [ With Examples ]

Magento offers a 6 different types of products, to help you choose the best products for your stores. In this article we’ll introduce the 6 types of Magento Products in details with example. Take a look and Enjoy… Table of Content 1. Simple Product 2. Configurable Product 3. Grouped Product 4. Virtual Product 5. Bundle…

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…

How to include Google adsense code at footer in PrestaShop 1.7

How to include google adsense code at footer in prestashop 1.7 In this post I am going to explain how to include google adsense code at footer in prestashop 1.7 In order to add your google adsense code at footer, please open the below files from your current template/theme. For example classic template footer.tpl file…

How to add live chat code in PrestaShop 1.7?

In this post I am going to explain how to add live chat code in prestashop 1.7. In order to add your live chat code at footer, please open the below files from your current template/theme. For example classic template footer.tpl file path. [PrestaShop Root Directory]/themes/classic/templates/_partials/footer.tpl Please check your template name and find the footer.tpl…

How to display date with different format in PrestaShop 1.7

In this post I am going to explain how how to display date with different format in Prestashop 1.7. In order to display a date in your .tpl file, you can use the smarty.now function. Here are some common examples: {$smarty.now|date_format:”%b %e %Y”} Result: Oct 19 2019 {$smarty.now|date_format:”%D”} Result: 10/19/19 {$smarty.now|date_format:”%A, %e %B %Y”} Result:…

« Older posts Newer posts »