Encryption is a complicated topic and one that, when done incorrectly, could result in sensitive data being exposed to bad actors or lost due to an inability to decrypt that data at a later date. The PHP Simple Encryption library is designed to simplify the process of encrypting and decrypting […]
Blog
I used a Plugin in a custom module to set the isAvailable function for CashOnDelivery to false when shipping method “flatrate_flatrate” is selected. file: /app/code/MyCompany/MyModule/Plugin/CashOnDeliveryPlugin.php < ?php namespace MyCompanyMyModulePlugin; use MagentoPaymentModelMethodAbstractMethod; use MagentoQuoteModelQuote; class CashOndeliveryPlugin { /** * @var MagentoCheckoutModelSession */ protected $_checkoutSession; /** * Constructor * * @param MagentoCheckoutModelSession […]
I’m trying to get the quantities of a bundle product before added to cart with js, jquery, knockout js W or whatever can allow me to do this. I want to validate that user cannot add to cart if the qty of products added to bundle is not 7. I […]
Buen día, estoy buscando habilitar el envío de correos a través de la tienda usando diferentes cuentas de correo para el caso de contacto general, ventas y soporte. Hasta el momento he podido enviar correos configurando ssmtp en mi servidor con Ubuntu, pero cuando configuro las diferentes direcciones de correo […]
I’ve seen some posts about this but can’t get to a conclusion. In a configurable product with dropdown all option appears (in stock and out of stock), what I need is to disable the ones out of stock so the client can see they exist but cannot click them. This […]