We sacrifice by not doing any other technology, so that you get the best of Magento.

We sacrifice by not doing any other technology, so that you get the best of Magento.

    • 8 Things You Should Know About Ecommerce Shipping And Fulfillment

      With the rise of eCommerce, convenience and shipping have gained extra emphasis. Shipping is very essential for successful B2B and B2C business. It is important to influence the buyer to buy a product and create return visitors by providing timely delivery of…

      READ MORE
    • Want To Improve Mobile Conversion Rate In 2019?

      A recent study showed that users spend 39 percent more time on mobile than on desktop but when it comes to buying they abandon mobile carts by 86 percent as compare to the desktop. So, for this reason, Magento, PayPal, Hi Conversion,…

      READ MORE
    • Magento Releases PWA Studio For Building More “App Like” E-Commerce Stores

      Magento will give you more feel and experience of app-like e-commerce store through Progressive Web Applications (PWA) studio. Yes, you read correctly! As said by Peter Sheldon, Senior director of strategy, digital experience, Magento “PWAs blur the lines between the mobile app…

      READ MORE
    • How to show tier price in category list in Magento 1.9.x

      In default Magento, tiered pricing is visible on the product page only,  But recently I have added in category list pages. For that you have to just put below code : PackageName/ThemeName/template/catalog/product/list.phtml

      READ MORE
    • Magento2 generate PDF file programmatically

      Create Index.php at app/code/Magemonkeys/Pdf/Controller/Index folder with following code: <?php namespace MagemonkeysPdfControllerIndex;   use MagentoFrameworkAppActionAction; use MagentoFrameworkAppActionContext; use MagentoFrameworkAppResponseHttpFileFactory;   class Index extends Action {     protected $fileFactory;       public function __construct(         Context $context,    …

      READ MORE
    • Magento2 Display Module List

      Run below command to see a full list of enabled or disabled modules: php bin/magento module:status To enable a module, use the below command: php bin/magento module:enable Magemonkeys_AjaxNewsletter To disable a module use the below command: php bin/magento module:disable Magemonkeys_AjaxNewsletter To uninstall…

      READ MORE
    • Magento2 Disable Payment Method Programmatically

      Create events.xml at app/code/Magemonkeys/DisablePayment/etc/  <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">     <event name="payment_method_is_active">         <observer name="disable_payment" instance="MagemonkeysDisablePaymentObserverPaymentMethodAvailable" />     </event> </config>  Create PaymentMethodAvailable.php at app/code/Magemonkeys/DisablePayment/Observer/ with the following code <?php namespace MagemonkeysDisablePaymentObserver; use MagentoFrameworkEventObserverInterface; class PaymentMethodAvailable implements ObserverInterface…

      READ MORE
    • Set custom price of Product when adding to cart

      Create events.xml file in folder 'Magemonkeys/Cartmodule/etc/frontend' and use event 'checkout_cart_product_add_after'. And paste the below code in it. <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd"> <event name="checkout_cart_product_add_after"> <observer name="addprice" instance="MagemonkeysCartmoduleObserverAddPrice" /> </event> </config> And now create 'AddPrice.php' file in 'Observer' folder with the following code:…

      READ MORE
    • Add custom attribute to Customer

      Step 1: Create /app/code/local/Magemonkeys/Customerattribute/sql/magemonkeys_myattribute_setup/install-0.1.0.php file and add the following code in this file: <?php $installer = $this; $installer->startSetup(); $setup = new Mage_Eav_Model_Entity_Setup('core_setup'); $entityTypeId = $setup->getEntityTypeId('customer'); $attributeSetId = $setup->getDefaultAttributeSetId($entityTypeId); $attributeGroupId = $setup->getDefaultAttributeGroupId($entityTypeId, $attributeSetId); $setup->addAttribute("customer", "myattribute", array( "type" => "varchar", "backend" => "", "label" =>…

      READ MORE
    • How to Enable/Disable Maintenance Mode in Magento 2?

      In this post, we will discuss how can one enable Maintenance Mode in Magento 2. It's a good practice to set Maintenance mode while you are making changes on live site. In order to put your Magento 2 site in maintenance mode,…

      READ MORE
    Recent Articles
    Get a Free Quote