In Magento 1.X you needed to expand export/import using special extensions. In Magento 2.0 there is a possibility to import custom options from the box. Read more
Magento Store Locator v.2.0 will be extraordinary helpful for owners with several offline stores. The extension grants the customers an ability to search for the stores – by products in the database and by user locations automatic detection. The search results will redirect clients to your regular stores, resellers’ or affiliate companies’ location, shown on Google Maps.
Key features:
- Store search by products in the database and by user location;
- User location is detected automatically;
- Displaying store preview and description in search results;
- All links and map markers transfer to Google Maps;
- Set various radius options for customers to select from when looking for the nearest shops in their neighborhood;
- Show exact distance and provide route directions to the selected stores;
- Import all your shops into the module from a CSV file or add them manually;
Add tabs on CMS pages of your store with Magento Tabs. Insert tabs wherever you want on the page easily. Use the WYSIWYG editor to create content of the tabs. You can add texts and links, images and videos, tables, lists and more. Feel free to gather different tabs to be displayed in one window. Create unlimited number of tabs and their combinations.
Key features:
- Tabs on CMS pages
- Unlimited number of tabs
- Possibility of editing content in the WYSIWYG editor
- Easy to add tabs wherever you want
- Horizontal and vertical position of the tabs
How does it look on the front end? Read more
When developing the administrative part of a module, it is often necessary to limit text field for the number of characters entered. To indicate the maximum length you can use the attribute of the tag input maxlength. Also you can use the rules of the object Validator: Read more
From time to time it is necessary to clear users’ unused shopping carts, especially for guest users. This feature has already been added with the last versions of Mаgentо. But for old versions, you can use a cron which would clear users’ shopping carts at the specified time. To do this, you should create a model and set up time to call methods for cleaning shopping carts.
So, let’s create a module with “clearing” methods: Read more
When customizing a Mаgentо shop it is often needed to apply different page design for each type of product. For these purposes are used handles of these types of products in the catalog.xml file: Read more
Robots.txt serves as one of the factors in search engine optimization, although in Magento this file is not included by default. So, let’s fix this and create the file ourselves: Read more
Default Magento settings allow users to track their order status only directly from their user account. But sometimes it is required to allow users to get updated information about the location and status of the order without the necessity to log into the account, just by entering the order reference number and email address on a website. Read more
Not everyone probably likes the Prototype library which is included into Magento by default. Some users prefer to use a more popular tool – JQuery framework since it has pretty many ready-made add-ons and plugins.
Any js file can be included either with the help of config. files or using events. Using the event core_block_abstract_prepare_layout_before
we can include a library into the page directly before Magento js files. Read more
In some cases it is necessary to create a wholesale directory on a website, which can be accessed by wholesale customers only, while all other users should not be able to access the directory. You can achieve this by using the observer controller_action_predispatch. Read more