Latest news
May 29, 2018

Ecommerce Search Bar: 16 Tips to Amplify User Experience

Imagine your e-commerce website is the same as your flagship store in the online marketplace. The search bar acts as your customers’ guide, either leading them to satisfaction or leaving them frustrated. Just as a physical store’s layout affects shoppers, your digital store’s search bar and website design deeply impact online visitors. In this blog, […]
April 10, 2018

Top 10 Best Magento 2 Daily Deal Extensions

For ecommerce business owners, finding the right strategies to boost online sales is crucial. That’s where daily deals come into play. If you’re looking to entice customers with unbeatable discounts, create a sense of urgency, and witness a surge in your revenue, you’ve come to the right place. In this blog post, we’ve compiled a […]
February 5, 2018

Magento Features: A Comprehensive Look at Its Capabilities

The digital retail landscape is continuously evolving, with platforms coming and going, each promising to be the next big thing. Among these, Magento (now Adobe Commerce) has been a steady dominant force in e-commerce. But what sets Magento apart from the rest? Why are businesses increasingly adopting it, and why do shoppers find it so […]
January 19, 2018

How To Protect Original Product Images In Magento 2?

PROBLEM: The developer enables the watermark function of Magento 2, but the original product images are still accessible from the URL without the watermark. For example: Cached image URL with the watermark: /pub/media/catalog/product/cache/df484df48ez74849c15sd4f7780/f/f/dsf-8f48d4f.jpg The original image URL without the watermark: /pub/media/catalog/product/f/f/dsf-8f48d4f.jpg Therefore, if someone who removes /cache/df484df48ez74849c15sd4f7780/ from URL can still access the original photo without […]
October 12, 2017

PWA SEO: How To Boost Progressive Web Apps on Search

As online businesses strive to provide better user experiences and optimize their search engine rankings, Progressive Web Apps (PWAs) have emerged as a powerful solution that combines the best of both worlds – the web and mobile applications. However, as PWAs heavily rely on JavaScript, there have been concerns about their impact on search engine […]
September 29, 2017

How To Set BCC For Customer Welcome Email In Magento?

TASK Set BCC for the welcome emails that are sent to the new customers when they register new accounts. SOLUTIONS In your custom module – Rewrite model Mage_Customer_Model_Customer in config.xml <config> <global> <models> ... <customer> <rewrite> <customer>Vendor_Namespace_Model_Customer_Customer</customer> </rewrite> </customer> ... </models> </global> </config> – Create Customer.php in path Vendor/Namespace/Model/Customer/Customer and override function _sendEmailTemplate class Vendor_Namespace_Model_Customer_Customer […]
September 21, 2017

How To Get SKUs From Orders In Magento

This Magento tutorial will show you how to get all SKUs from orders of the user who is currently logged in in Magento. For Example: A user has placed 3 orders. How can we get the returned list of SKUs including 0001, 0002, 0003, 0004, and 0005? The aim of this is to create a […]