On My site i am running old version of Advanced Product Options Suite Extension for Magento 2 by mageworx. I just updated the Advanced Product Options Suite Extension into latest version. I tired updation with upload Extension files manually also tried update Extension via composer also. On both case after […]
Magento
I have two Magento sites both v2.3.3 I have noticed today that I cannot run the compile function: php -dmemory_limit=4G bin/magento setup:di:compile I’m getting the following error: Application code generator... 3/7 [=====>-------] 42% 18 secs 254.0 MiB In ErrorHandler.php line 61:Deprecated Functionality: Array and string offset access syntax with curlybraces […]
I have added the field “Favorite Color” to the Customer entity and added it to the registration form. The field properly stores data, as I can see when logging in as Admin and checking in Customers -> All Customers -> Edit -> Account Information. However, when the Customer logged in […]
I am using Magento 2.4.4 and I want to show the normal price and special price of the selected simple products of configurable products on the Product page. I am using configurable dropdown options so I could not use swatch-renderer.js to customize. Please suggest any solution to achieve this.
I show a few attributes in my categories(list view) on my default store view and that is working well. Magento ver. 2.4.3 Now I created a second store view but unfortunately the attributes didn´t show up. All other attributes for example on the product detail page are displayed correctly. I […]
How can I go about setting up my layered navigation and category tree so the displayed products can be filtered by which child category they are in? I currently have every category in my tree is set to anchor and when I go to a given category page, all the […]
Thanks in advance for your help! I am using the Magento Open Source ver 2.4.5 with the breeze-evolution theme from Swissup labs. Currently when I navigate from one page to another, the page does not fully load. For example, when i click on a Product, it navigates to the Product […]
I want to get active filters or all filters in my renderer. How can I get filter values in my renderer class because I want to add conditions based on these applied filters? Renderer Renderer Class
How do you programmatically assign simple product to configurable? What I tried: $configurableProduct = $this->objectManager->create('MagentoConfigurableProductModelProductTypeConfigurable'); $configurableProduct->setUsedProductAttributes($product, array($product_jsa_type_attribute_id)); $product->setNewVariationsAttributeSetId(4); $product->setAssociatedProductIds(array( $productObj->getIdBySku($ticketProduct['product_id']), $productObj->getIdBySku($couponProduct['product_id']), ));