1 exception(s): Exception #0 (LogicException): Circular dependency: XXXCrmServiceAccount depends on XXXCrmServiceMoreResults and vice versa. Class: Account use XXXCrmServiceMoreResults as MoreResultsService; class Account { public function __construct( MoreResultsService $moreResultsService ) { $this->moreResultsService = $moreResultsService; } Class MoreResults : use XXXCrmServiceAccount as Account; public function __construct(Account $account) { $this->account = $account; } […]
Magento
I upgraded from 2.4.4-p2 to 2.4.5-p1 and now the frontend and backend have no CSS and images. With the upgrade I also changed from PHP 7.4 to 8.1. Any idea what the problem causes?
I have question regarding inventory management. I do not want to use multi source inventory for our magento 2.4.0 store. Now we are going to convert multi website with different quantities for same product so is there any way to do manage different quantitates for multi website without MSI?
I need to show a message after customer logs in. In order to do so, I created a afterAuthenticate() plugin that gets called both when the customer logs in from the login page and when the customer logs from the checkout page. However, the plugin should show a message to […]
We have been using a 3rd party ERP system for years and it’s always worked without many issues. However since magento 2.4.5 whenever we add a product to a category, all the settings in said category get the “use by default” box unticked: The owners of the system say it’s […]
The question is specifically about ./Magento/Checkout/Api/Data/ShippingInformationExtension.php and adding extra columns via extension_attributes.xml. Modules: Source module: Vendor_Module Overriding/extending module: Vendor2_Module2 (extending JS / templates etc / Plugins) from Source module. Issue I need to use a custom extension_attributes.xml inside Vendor2_Module2. Information The source file: Vendor_Moduleetcextension_attributes.xml: <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Api/etc/extension_attributes.xsd"> <extension_attributes for="MagentoCheckoutApiDataShippingInformationInterface"> <attribute […]
If I call php bin/magento setup:upgrade I get: “The store that was requested wasn’t found. Verify the store and try again.” What can I do?
We have an adobe commerce configuration where we have both PWA setup and the usual storefront view setup. I wanted to know if it’s possible to use Elastic search on PWA and Live Search on the normal storefront view. In this case, none of them should interfere with the other […]