Posts

How to add Indian state dropdown in Magento 1 or Magento 2

 Understanding that every business is different with novel prerequisites. Each storekeeper has his own requirements for their web stores to give better shopping experience.  At the point when a store is made for a few explicit nations or area and when administrator needs to have some custom structure, he really wants to have it with determination choices as opposed to message confines request to limit clients' endeavors to fill in and boost their experience. http://magentoexpertforum.com/showthread.php/27239-How-to-add-Indian-state-dropdown-in-Magento-1-or-Magento-2?p=62512#post62512 https://meetanshi-blog.quora.com/How-to-add-Indian-state-dropdown-in-Magento-1-or-Magento-2 https://www.reddit.com/user/Meetanshi/comments/b067b5/how_to_add_indian_state_dropdown_in_magento_1_or/ https://in.pinterest.com/pin/833377106025560319 https://ello.co/meetanshi/post/1jbpxsewsdwzxsdzepqtya https://www.patreon.com/posts/25316436 https://steemit.com/magento/@meetanshi/how-to-add-indian-state-...

How to Convert Guest to Customer in Magento 2

MageAnts Magento 2 Guest to Customer is one of the most mind-blowing modules to further develop clients' shopping experience by permitting them to checkout as a visitor utilize as it were. Utilizing this expansion, the administrator might auto at any point convert the clients who put in a request as a visitor to the enrolled clients and dole out them to a reasonable client bunch. Empower auto-convert choice to change the visitor clients over completely to enlisted clients after checkout. Allocate the changed clients over completely to reasonable client bunches utilizing the administrator board. Advise clients through email about their record alongside the login accreditations. In the wake of being changed over completely to an enrolled client, at whatever point they make another request with a similar email id, it will consequently relegate the request to their record. Administrator can choose the email layout and the email source from the administrator board. Efficient for clients...

How To Create Magento 2 Catalog Price Rules

 In the wake of introducing Magento 2, your store is furnished with many strong showcasing arrangements that are exceptionally useful to upgrade your incomes. One of the apparatuses is Price Rule that permits store administrators to offer exceptional cost to the purchasers. It could urge clients to pursue moment buy choices by being a piece of the limited time crusade. You can find out about the Cart Price Rule in the last post, and in this post we're discussing Catalog Price Rule, how to make it, and what makes it not the same as the Cart Price Rule. https://meetanshi-blog.quora.com/How-To-Create-Magento-2-Catalog-Price-Rules https://www.reddit.com/user/Meetanshiinc/comments/x2xmdl/how_to_create_magento_2_catalog_price_rules/ https://in.pinterest.com/pin/833377106061734342 https://list.ly/list/7R26-blog-submission https://ello.co/mansibhadani/post/ogsr5rirjwychub_hx80dq https://www.patreon.com/user?u=77485266 https://steemit.com/magento/@mansibhadanii/how-to-create-magento-2-catal...

How to Install Magento 2 Security Patch PRODSECBUG-2198

Back on March 26 of this current year, When Magento has delivered the update of PRODSECBUG-2198 to forestall SQL infusion Vulnerability in Magento 2. Before it offers an open greeting to every one of the programmers to break the store's significant client and installment information. To keep your business information from being hacked, you must fix this center issue before you being designated. In any case, this security upgrade comes as a fix for Magento 2.2.3 as well as Magento 2.2.10 by fixing remote code execution as well as cross-site prearranging on your site. Since Magento has proactively finished help for 2.1.x, they won't deliver a security update for that rendition. REFERENCES: http://magentoexpertforum.com/showthread.php/27356-How-to-Install-Magento-2-Security-Patch-PRODSECBUG-2198?p=63039#post63039 https://meetanshi-blog.quora.com/How-to-Install-Magento-2-Security-Patch-PRODSECBUG-2198 https://www.reddit.com/user/Meetanshi/comments/b6hjym/how_to_install_m...

Magento 2 Inventory Management - Manage Stock in Magento 2

Powerful stock administration is fundamental in eCommerce, and this is likewise valid for Magento 2 sites. You ought to control your store's stock and consistently get to know the amount of items in your store. There are two methods for overseeing stock in Magento 2. You can take all products' general stock settings taken care of or handle every thing separately. Be that as it may, the two strategies are expected to accomplish a definitive viability. In this aide, we will tell you the best way to oversee stock of an internet based store that sudden spikes in demand for Magento 2. General Inventory Settings To design General Inventory Settings, explore to Stores in the Admin Panel, and pick Configuration in the Settings segment. Then, at that point, you can expand the Catalog tab and open the Inventory menu. Then, you can find Stock Options and Product Stock Options. Stretch out any of these choices to arrange. References: http://magentoexpertforum.com/showthread.php/26911-Magen...

How to Check If Third Party Library Exists or not in Magento 2

When we customize a Magento theme, we sometimes want to use third-party Javascript plugins. To add a JS library in Magento 2 is quite different from what we are used to doing in Magento 1. Magento 2 uses RequireJs library for nearly every JavaScript feature it has.  Among other benefits, it improves the page loads by loading JS files asynchronously and only loading JS files the page needed. We should keep this in mind and avoid including the JS plugins in the head by <script src=”…”> tags when possible.  Moreover, for jQuery plugins which require jQuery to be loaded first, using <script src=”…”> tags won’t work. It will raise errors when the plugins attempt to use the global jQuery object. Because jQuery is loaded as a RequireJS module in Magento 2, the global “jQuery” object will not be defined until you use jQuery as a RequireJS module.  I’ll use the Owl Carousel jQuery plugin as an example to show you how to add third-party Javascript plugins in Magento 2 v...