I’m currently working as an Adobe Commerce Cloud developer and have recently transitioned to MacOS. I’ve successfully set up my Adobe Commerce project in Docker using Warden and I’m using Vs Code as my primary IDE for development. Now, I’m facing challenges in adding PHP Xdebug for my local setup. […]
Magento
I am fetching data and populating radioset options for an admin form. I can populate the options but I want to have them checked based on the fetched data. I tried putting ‘checked’ attribute but was not successful. Can someone please guide me in the right direction? <?php namespace HaywardSchedulePageBuilderUiComponentForm; […]
Problem 1 – Root composer.json requires stripe/stripe-payments ^3.3.0, found stripe/stripe-payments[3.3.0] in the lock file but not in remote repositories, make sure you avoid updating this package to keep the one from the lock file. Problem 2 – Root composer.json requires weltpixel/module-google-tag-manager ^1.10.18, found weltpixel/module-google-tag-manager[1.10.18] in the lock file but not […]
I’m using graphql to get data to my PWA frontend project.Following is my schema.graphqls type Query { comparelist: [ComparelistOutput] @resolver(class: "NeoSolax\CompareList\Model\Resolver\ComparelistItemResolver") @doc(description: "An array of items in the customer's compare list") } type ComparelistOutput { id:String sku:String url_key:String } ComparelistItemResolver.php class ComparelistItemResolver implements ResolverInterface { use NeoSolaxCompareListHelpergetCompareList; public function __construct( […]
I’m facing a peculiar issue with my Magento 2.3.6 application where products with customizable options are being removed from Elasticsearch after indexing. I’ve tried various customizable option types such as field, dropdown, and checkboxes, but the problem persists. Upon debugging, I found that when I use var_dump($product->hasOptions()), it returns null. […]
magento2.4.5 CE Before generating the order, I need to call the erp third-party system to verify whether the inventory is satisfied and whether the product is removed from the shelves. How should I operate
I need help with that if i want to install module i get error after make command php bin/upgrade SQLSTATE[HY000]: General error: 1826 Duplicate foreign key constraint name ‘GHMZ_AMASTY_AMCHKT_FIELD_ATTR_ID_GHMZ_EAV_ATTR_ATTR_ID’, query was: ALTER TABLE ghmz_amasty_amcheckout_field MODIFY COLUMN id smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT “Entity ID”, MODIFY COLUMN attribute_id smallint(5) UNSIGNED […]
We are using PWA venia theme 2.4.5. We are trying to add a button below ADD TO WISHLIST in PDP Page We tried the below code . but we are not seeing any button. { isMobile && ( <div className={classes.cartActionButton}> <div className="px-3 h-[46px] m-auto w-full"> {cartActionContent} <Suspense fallback={null}> <WishlistButton {...wishlistButtonProps} […]
I have the following needs I synchronized the products of occ system to magento2.4.5 CE, and when synchronizing the ladder prices of products, the ladder prices were multi-currency. magento2 does not use its own currency settlement rules. And I found that the magento2 ladder price defaults to USD as the […]