we have a Magento1 installation. We have 6 store views, each one with a different domain. Of these 6 store views, 5 work perfectly (so, if I go inside store2.com everything loads correctly – same for store3.com – store4.com – etc…). Also Magento’s backend works fine. One store view, however, […]
Magento
I was wondering if there is a way to get the sum of the stock of simple products in a configurable product using mysql. As an example: configurable sku = product_1 simple prodcuts associated to the configurable: product_1_a qty = 10 prodcut_1_b qty = 5 prodcut_1_c qty = 5 prodcut_1_d […]
I am a plugin developer for Magento. We recently got a mail that our marketplace submission will be delisted, because it is not compatible with the latest Adobe commerce release. When using composer to install this enterprise version we get (doesn’t matter what stability is chosen, in this example dev): […]
I have a few virtual categories set up in my top menu. When I go to a specific brand the meta title on my browsers tab shows a dash character “-” before the Brand Name. Looking for a solution where the meta title will just be “Ping” instead of “- […]
I am installing fresh Magento, after installing MariaDB serve, I am creating database user as: mysql> CREATE USER 'magento'@'localhost' IDENTIFIED WITH mysql_native_password BY 'm0d1fyth15'; The problem is, this statement always shows syntax error message when I use “WITH mysql_native_password” but the same statment executes successfuly if I omit it and […]
I am building a Page Builder Custom Content Type that will allow a user to enter in a URL and have the URL content display in an iFrame. Is this possible? /app/code/Vendor/Module/view/adminhtml/ui_component/pagebuilder_vendor_module_form.xml <?xml version="1.0" encoding="UTF-8"?> <form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd" extends="pagebuilder_base_form"> <argument name="data" xsi:type="array"> <item name="js_config" xsi:type="array"> <item name="provider" xsi:type="string">pagebuilder_vendor_module_form.pagebuilder_vendor_module_form_data_source</item> </item> <item […]
I want to fetch customer address into the transaction.phtml but i am not getting how to do this . I am trying below but not getting success <?php $helper = $this->helper("LofCustomerMembershipHelperData"); $transactions = $block->getTransactions(); $address=$block->getPrimaryBillingAddress(); // var_dump($helper); $objectManager = MagentoFrameworkAppObjectManager::getInstance(); $customerSession = $objectManager->get('MagentoCustomerModelSession'); $customerId =$customerSession->getCustomer()->getId(); // $address = $this->myHelper->getCustomerAddressById(Id); // […]
We have copied the full folder of pub/media/catalog/product/ from a Magento instance 2.3.5-p1 to a new Magento instance 2.4.4 Products are all same on both instances. Pathes as well. Product images show up in category page in frontend as well as thumbnails in backend BUT not on product page in […]
Does anyone have complete knowledge about magento design patterns with their examples if yes kindly share the reference?