want to add something with product name dynamically while adding into the cart. Each product have different concatenation with product name. And that product name should be updated on everywhere like cart page, checkout, email, invoice, in sales grid etc. I have followed the step from below link. But product […]
Magento
I am using Magento 2 page builder with the luma theme. I am trying to find in the files where I can edit the number of slides that the media slider displays, currently it only displays 1 image at a time and I would like to display somewhere between 3 […]
After running reindex in magento 2.3.4 in command line received the following errors Table “mg_catalog_product_index_eav_replica” does not exist Table “mg_cataloginventory_stock_status_replica” does not exist Table “mg_catalog_product_index_price_replica” does not exist Can these tables be recreated?
On the product page, i need to lay out the static block through the widget. This is possible – the problem is that it is displayed before the attribute selector. How to make that from the beginning there was an attribute selector, then this widget and then the buy button?
hello I cloned the contact form controller to customize some fields but when sending data I get the following error, I think it is due to the constructor: Exception #0 (MagentoFrameworkExceptionRuntimeException): Type Error occurred when creating object: EsignContactControllerMagentoContactIndexPostInterceptor
I know that I can do something like text: product_sku to display the products sku in the minicart. but what about any other custom product attributes? Please assist and tyvm
I am working on a simple custom form for my site where employees can perform internal orders between stores. The form and results div is as follows: <form method="post" action="" id="myForm"> <?php $store = $_GET['store']; ?> <!-- Store input --> <label for="store">Store: </label> <input name="store" type="hidden" id="store" value="<?php echo $store; […]
I am trying to sync missing order in google analytics but I don’t now what should I passed in below code $result['orders'][] = [ 'id' => $order->getIncrementId(), 'affiliation' => $this->escapeJsQuote($this->_storeManager->getStore()->getFrontendName()), 'revenue' => $order->getGrandTotal(), 'tax' => $order->getTaxAmount(), 'shipping' => $order->getShippingAmount(), ];
I’m working on an integration that reads data from a Magento2 database and the final aim is to send order data, products and the relation between products (line_item) to a third party service via API. The database has thousands of orders, but none of them has relation for quote and […]