We are currently using Quickbooks, Wholesale and Manufacturing, a desktop version, and we need to upgrade and are looking at Quickbooks online version. Does Magento 2 integrate with Quickbooks online, and/or do we need a plug in/extension to make it integrate? OR, do you have a better suggestion than Quickbooks? […]
Magento1
I’m creating a module which is called post-purchase upsell. In this module, as a final step, I need to charge an amount. For that, I need to load all available payment methods the same as checkout does https://prnt.sc/vsFunEkjlN_i. So, I can use direct payment services on the custom module page.
I’m new in using Magento. Ok, I use Mage-OS. All is very difficult and sometimes no way to found a valide answer for questions. So I’m happy to find these forum and hope of your help. I want to install the german-language-pack https://commercemarketplace.adobe.com/wilma-digital-magento2-informal-de-de.html but don’t know about the verification. I […]
<?php declare(strict_types=1); namespace ModuleCoordControllerIndex; class Index extends MagentoFrameworkAppActionAction { protected $resultPageFactory; /** * Constructor * * @param MagentoFrameworkAppActionContext $context * @param MagentoFrameworkViewResultPageFactory $resultPageFactory */ public function __construct( MagentoFrameworkAppActionContext $context, MagentoFrameworkViewResultPageFactory $resultPageFactory ) { $this->resultPageFactory = $resultPageFactory; parent::__construct($context); } /** * Execute view action * * @return MagentoFrameworkControllerResultInterface */ public function […]
Old Code: <?php /** * Copyright © All rights reserved. * See COPYING.txt for license details. */ namespace ModuleCoordCron; class GenerateShipping { protected PsrLogLoggerInterface $logger; /** * @var ModuleCoordModelShipmentGeneration */ private ModuleCoordModelShipmentGeneration $shipment; /** * Constructor * * @param PsrLogLoggerInterface $logger * @param ModuleCoordModelShipmentGeneration $shipmentGeneration */ public function __construct( PsrLogLoggerInterface […]
I am having grouped product on my projects When I go the category from the category bar it shows the correct stock status. but When I go with the catalog search it always shows the out of stock for the all products . Here is my template I checked when […]
Adobe has released security patches to address the “Cosmicsting” vulnerability. These patches are only available for the following versions: My question is: if I want to apply this patch on Magento Open Source 2.4.0, where can I find the official patch for that?
I’ve been trying to set config values both through config-global.php and using MagentoFrameworkAppConfigStorageWriterInterface but it appears this isn’t working. I’m aware of Issue #39230 on the Magento 2 github but I haven’t seen any workarounds posted for this issue and I’ve been struggling to figure out one myself. Anyone out […]
My composer file is below "name": "mymodule/module-shipping", "description": "Description of module", "type": "magento2-module", "version": "1.0.0", "license": [ "OSL-3.0" ], "require": { "php": ">=7.4", "magento/framework": "~100.0.4" }, "autoload": { "files": [ "registration.php" ], "psr-4": { "Mymodule\Shipping\": "" } } } My zip file name is mymodule_shipping1.0.0.zip Please help me. Thanks in […]