I need connect in custom module to multiply RabbitMQ hosts. So how setup it? I tried something like this in app/etc/env.php 'queue' => [ 'amqp' => [ 'connections' => [ 'default' => [ 'host' => 'host1.test', 'port' => '5672', 'user' => 'guest', 'password' => 'guest', 'virtualhost' => '/' ], 'site' […]
Magento
Im completely new to Magento and im working on a school project and added two buttons on my product pages with some code. These buttons work well they let people put products in the mini-cart without any problems. Here is the code i used var config = { map: { […]
I’ve been looking for a solution for some time to add the base price to the hyva minicart (the one reworked with alpineJS), not the already discounted one. Do you have an idea on how to do it? Thanks a lot 😀
We mentioned jquery library file in template.html in PWA Venia setup as below : <script async src="//asset.fwcdn3.com/js/embed-feed.js" type="text/javascript" ></script> We are using that library file in below path src/components/Homepage/components – FireWork.js import React from "react"; import HeadTitle from './HeadTitle'; const FireWork = () => { return( <div class=""> <HeadTitle title={'Shop […]
After upgrading to MAG 2.4.6-p3 I am getting a cache error. Would anyone have any suggestions? Here is my log, I think its being generated when someone tries to order. I figure it must be a store ID problem but am not sure where to start to track this down. […]
We have setup and deployed and InnoDB Cluster Magento When connecting to the new Database by editing env.php we get a 499 error from the Nginx access log. Is there something else we should be looking at? Let me know if more info is needed nginx version: nginx/1.24.0 Below is […]
I tried a lot to change the status New order from pending to complete iclick open the box for the status i don’t show any other statues only Pending
i’m trying to test if a class method is doing her job. Basically here it is. public function __construct(SaveCommand $saveCommand, SubscriptionData $entityDataFactory, ManagerInterface $manager) { $this->saveCommand = $saveCommand; $this->entityDataFactory = $entityDataFactory; $this->_eventManager = $manager; } /** * @param $subscriptionData * @return void */ public function updateSubscription($subscriptionData){ try{ $entityModel = $this->entityDataFactory; […]
I want to implement the functionality for checking email in the real-time in the customer register form, without submitting the form, need to check whether the email is already there or not and show an error or message. Can anyone help or suggest any reference link for the same ?