Separate Magento stores
I have two stores on one magento dashboard. One of the stores is being taken over by another company. Is it possible to remove one store and transfer it to it’s own magento platform? Thanks
I have two stores on one magento dashboard. One of the stores is being taken over by another company. Is it possible to remove one store and transfer it to it’s own magento platform? Thanks
I’m trying to create a product with stock (quantity), so I can do an example purchase. But whenever I try to create a product, I get the following error: “The stock item was unable to be saved. Please try again.”… Read More »Can’t create product with stock
I am trying to integrate RabbitMQ with Magento 2 to access bulk endpoints Bitnami Magento ver. 2.4.6-p2 I have successfully set up RabbitMQ with my Magento 2 instance, and now bulk requests are being sent to the queue. However, I’m… Read More »Configuring RabbitMQ with Magento 2: Bulk Queue Pending
I have overridden the formatDateTime function of the MagentoFrameworkStdlibDateTimeTimezone class in Magento 2 to display the timezone abbreviation along with the formatted date. However, I noticed that when using the ‘z’ pattern, it only returns the abbreviation without the full… Read More »Formatting Date and Time with Timezone Abbreviation
I have created buttons for a page in m2 admin. Please see below screenshot. I’ve used following xml code at /view/adminhtml/ui_component/buttons.xml: <listing xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Ui:etc/ui_configuration.xsd”> <argument name=”data” xsi:type=”array”> <item name=”buttons” xsi:type=”array”> <item name=”addAllProductsForSync” xsi:type=”array”> <item name=”name” xsi:type=”string”>addAllProductsForSync</item> <item name=”label” xsi:type=”string” translate=”true”>Add… Read More »Club buttons in a drop down – m2 admin
I’m writing a function that returns quantity when an order is canceled by cron but I don’t know how it works. Can anyone help me? Thank you.
”’ public function execute(Observer $observer) { $item = $observer->getEvent()->getData(‘quote_item’); $product = $item->getProduct(); if ($product->getFinalPrice() > 100 && !$this->customerSession->isLoggedIn()) { $this->messageManager->addError(‘You need to login for adding any product worth 100 or more’); $item->getQuote()->removeItem($item->getId()); } } } ”’ work this using checkout_cart_product_add_before… Read More »show an error message in adding item to the cart if the user is not logged and the item have price greater than 100 that item shouldnot added to cart
Hi, first post so go easy. Is it possible to build a server or rent one online and be anonymous and zero risk of that server being asked… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1909467&goto=newpost
How to prevent bundle products showing up in catalog search results where the bundle product itself does not match the search query? Running Magento 2.3.7, have observed the following behavior regardless of whether elasticsearch (v7) or mysql is the search… Read More »How to Stop Catalog Search from Indexing Bundle Products by their Children
I have created a shipping rule with certain products so that such products have free shipping, but for example when I delete the product in the checkout cart from the mini cart, the shipping cost is not updated until I… Read More »Magento 2 Update Shipping Rates when remove Products from Mini cart in Checkout Page via JS