Social Meta Tags allows store admin to control how the pages appear on social media. SEO best practice says to have unique social meta tags for each product page or category pages in Magento 2 store. Default Magento 2 provides social meta tags for the product pages, but sometimes a store owner may want to hide social meta tags or change the title, image or any other social meta tag content dynamically. In cases, you need to override product view page social …
Category: Magento 2
Tips, tricks, and solutions for Magento 2.
Magento 2 facilitates the feature of cron job that allows to schedule activities ahead of time and thus automates them, saving our time! Some of the examples where an admin needs to set Cron in Magento 2 are reindexing, generating Google sitemaps, customer notifications, updating currency rates, etc. Get rid of doing important periodic tasks manually. Automate such tasks in your stores by configuring cron job in Magento 2. There are two methods to set cron in Magento 2: From SSH …
Sometimes, Magento 2 store is managed by multiple people. There may be the requirement when all the store managers don’t need the full rights or the store owner may need to limit access to managers based on their responsibilities. Also, there is the time when you require providing the temporary access to your store. It’s when you require to create new admin user in Magento 2. Creating multiple admin users simplify the store’s administration and management. Each admin plays a unique role …
To err is human; to solve, divine! Logs in Magento 2 consist of system information records for the analysis in the future. One of the most common examples of such events is the error log. Developers know the pain of errors and the process to deliver a working solution. Debugging can be made easier for them by custom logs. It helps to spot an error and the reason for it, easily. Logs contribute to the visibility into Magento 2 system …
404 page is the most common web error caused by broken links or URL typo. Whenever users land to a 404 error page, there are chances that they may leave the store. To grab their attention and make the page user-friendly, you should customize the 404 page which may display some additional information or provide links to users to get back to the track. Having a good and user-friendly 404 page content is as important as other pages in your Magento …
Are you thinking to Migrate to Magento 2 or have already created a new store using Magento 2? The very first thing you will require after getting migrated is to make it fully functional according to your business needs. Here’s where Magento 2 Extensions come into the picture. Extensions are the block of code that helps extend the store functionality. They need to be installed correctly in order to leverage their features. There are many ways to install a Magento …
An attribute set is a group of multiple individual product attributes that define the characteristics of the products. It is used every time while creating a new product in Magento 2 to bring all the attribute options to set during data entry which would be available to the customers. While upgrading to the latest Magento version, migrating to Magento 2 or for custom purpose, you may require to create a bunch of attribute sets. Doing it manually through the Magento 2 …
Magento 2 static blocks are helpful to admin to add and control HTML code to be displayed in the frontend. Generally, admin uses the static block for size charts, offer banners, sale promotions, return policies, etc. The entire objective of creating these static blocks is to streamline the amount of time it takes to update your site. You don’t need to dive into the hundreds of lines of code to update the changes every time! Using Phtml file is one …
Sometimes, Magento 2 store admin needs to prefill the shopping cart with a product whenever a user lands to the website. There are many uses of this functionality; for example, the admin may require to add a virtual product to cart whenever a particular product is added to the cart by a customer, the admin may want to give away the free product by default, the admin requires to integrate a custom system or he may require to send visitors directly to …
Learn how to create a simple product programmatically in Magento 2 store. …