Venia pwa + magento 2
Can anyone explain how security works on graphql on venia pwa? I don’t see any tokens or sessions or something like this at Venia. So any developer can create a graphql query and get all data from my site?
Can anyone explain how security works on graphql on venia pwa? I don’t see any tokens or sessions or something like this at Venia. So any developer can create a graphql query and get all data from my site?
Configurable product swatch selection – how can we update the simple product MGS_Lookbook block on configurable product page swatch selection?
Hi I have one requirement where user visit on the website and upload their product image(Like some tool image, Some kind of machinery part etc.) and select some attribute like size,colour,material etc and click on add to cart price will… Read More »Magento 2 How to create order on user demand
Hi, could anyone recommend a host suitable for a basic, low traffic personal WordPress site? Probably only 10 or 20 pages max. I’m in the UK… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1914985&goto=newpost
My prod is 2.4.4 I’ve moved servers and migrated my prod env. But I had to upgrade to 2.4.6 on the new server – which I did successfully. Now my old prod db is still based on 2.4.4, but I… Read More »Upgraded to Magento 2.4.6 in Staging Env but Prod Still 2.4.4 – Can I Still Import 2.4.4 DB over top?
I wrote an API endpoint to handle unsubscribe thru API call It is working well. However, I don’t want Magento to send out unsubscribe email to customer, how can I achieve this? Thanks <?php namespace ABCNewsletterEndpointModel; use ABCNewsletterEndpointApiSubscriptionInterface; use MagentoFrameworkExceptionNoSuchEntityException;… Read More »custom api endpoint for newsletter unsubscription question
I am adding below code but sort not shwoing in frontend.
Payment Method for Affirm show as a Guest, however the billing and shipping info show the name of the customer – Payapal and CC payment do not have this issue. Magento ver. 2.4.6-p3. I am using the magento default email… Read More »Affirm order confirmation email – Payment Method for Affirm show as a Guest
I want to prevent the decrease product QTY after the shipment generation. Actually my client is using NetSuite and he want to update the QTY from there. They are managing all orders from the NetSuite. So, is there any way… Read More »Prevent Quantity Decrease on shipment generate
I have created a custom category attribute using below code. AyakilCustomCategoryAttributeSetupPatchDataAddMyDescriptionCategoryAttribute.php public function apply() { $this->moduleDataSetup->getConnection()->startSetup(); /** @var EavSetup $eavSetup */ $eavSetup = $this->eavSetupFactory->create([‘setup’ => $this->moduleDataSetup]); $eavSetup->addAttribute( MagentoCatalogModelCategory::ENTITY, ‘my_description’, [ ‘type’ => ‘text’, ‘label’ => ‘my_description’, ‘input’ => ‘textarea’, ‘sort_order’… Read More »How to enable wysiwyg editor for custom attribute in admin category page?