I posted a portion of this issue on Reddit, but after reading through a few posts here regarding issues with free shipping configuration I’m now wondering if the theme layered onto my site is somehow interfering with not only my basic “Free Shipping” mechanism, but the presentation of shipping options […]
Magento
I have created new module but when I run the command magento module:status I couldn’t see my module name neither in enabled or disabled list my registeration.php code : <?php MagentoFrameworkComponentComponentRegistrar::register( MagentoFrameworkComponentComponentRegistrar::MODULE, 'Demo_Helloworld', __DIR__ ); the module.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <module name="Demo_Helloworld" setup_version="1.0.0"> </module> </config> why I can’t […]
I am creating a module for refunds and I have an error using the method <?php namespace CrediYaCrediYaControllerCrediYa; use MagentoFrameworkAppActionAction; use MagentoFrameworkAppActionContext; use MagentoFrameworkAppRequestHttp; use MagentoSalesModelOrderCreditmemoCreationArgumentsFactory; class Refund extends Action { /** @var MagentoFrameworkAppRequestHttp */ protected $request; public function __construct( Context $context, Http $request, MagentoSalesApiRefundInvoiceInterface $invoiceRefunder, CreationArgumentsFactory $creationArguments ) { […]
I am debugging a common problem that I have seen others asking about, losing user session data during a successful order which redirects to an empty cart. Most solutions i have read about suggest a redis setting can fix that, by setting the following: <break_after_frontend>5</break_after_frontend> However I have discovered that […]
I use wyomind to create datafeed for among other things Google merchant. I keep getting error for configurable product that the price isn’t enabled. When it is. It’s for example a sweater, with sizes as simple products. Buy I need the configurable product to show for example in Google shopping. […]
I need to remove products from the collection that have no image. Even if they have the placeholder image I want them to be invisible. The module code I use is this <?php namespace SmartwaveFilterproductsBlockHome; use MagentoCatalogApiCategoryRepositoryInterface; class LatestList extends MagentoCatalogBlockProductListProduct { protected $_collection; protected $categoryRepository; protected $_resource; public function […]
I need add to product page ability upload DOC files. I’m trying add this via attribute, but nothing not found, any idea how possible add this?
so I’ve been looking to do some adjustments with an observer by listening to the event that is fired after a user successfully places an order. But, I don’t know which event I’m looking for. My best guesses are: checkout_submit_all_after checkout_controller_onepage_saveOrder I got the above events from This list of […]
Hello #realmagento folks, How to make page blocks cacheable based on the store-id & request-URI (irrelevant of query params though) in Magento 2? /some-page -> blocks are cached /some-page?abc=xyz -> blocks are not cached (but I want it to be cached) Note that block caching stops working as soon as […]