I am using the default api to create customer for a guest user to create account mutation { createCustomer( input: { firstname: “Bob” lastname: “Loblaw” email: “bobloblaw@example.com” password: “b0bl0bl@w” is_subscribed: true } ) { customer { firstname lastname email is_subscribed } } } But after creating the account on my […]
Magento
Magento Verrion: 2.4.3-p1 Problem: I tried to update the products weight value in the admin panel. I changed the weight value 1.2kgs(current) => 2.8kgs(preffereable) and press the save&exit button. but in my case nothing has been updated. after changes it’s show the same value 1.2kg. I want to know the […]
When we click on any category or subcategory link , it open two urls : first, it will load below url https://www.website.com/earrings/earlobes Next, it will load below url : https://www.website.com/earrings/earlobes?page=1 as we have pagination. because of this, facebook pixels are triggering two times as we are loading the page url […]
Current Magento v2.4.5-p1. Process Magento version to 2.4.5-p7 upgrade by following process give on below link. https://experienceleague.adobe.com/en/docs/commerce-operations/upgrade-guide/implementation/perform-upgrade Switch to maintenance mode to prevent access to your store during the upgrade process bin/magento maintenance:enable Starting the upgrade process while asynchronous processes, such as message queue consumers, are running may cause data […]
I’m working on a Magento 2 Hyva Theme project and need to convert the default Media Gallery slider into a vertical slider. Currently, the slider displays images horizontally, but I want it to scroll vertically instead. Can someone provide guidance or point me in the right direction on how to […]
Last year our Previous develepors added suffix to the order number. Example : If Order number is 10000001 , they added suffix like 10000001-23 as it was 2023 year. now we want to change to 24 from 23. Currently i do not have database access. Is there any way i […]
How to set limit of product’s swatches on category listing page. I have to show 5 swatches of the product on category listing page. I have tried below code but that’s code working only 5 swatches of product and less than 5 swatches of products, Not working with greater than […]
I am trying to implement the show/hide password functionality when a user logs in. I followed the instructions from Magento, https://developer.adobe.com/commerce/frontend-core/ui-components/howto/show-hide-password-checkbox/, but they don’t seem to work. I looked at this ticket as well, customer/account/login Showpassword checkbox doesnt work, but it didn’t help much. I am able to get the […]