Answers for "find magento product data with request"

PHP
0

magento load product by id

$productId = 20;
$product = Mage::getModel('catalog/product')->load($productId);
Posted by: Guest on May-19-2020
0

magento 2 find orders for a product

SELECT so.customer_email, soi.sku, soi.name FROM `sales_order` as so left join sales_order_item as soi on so.entity_id = soi.order_id where soi.sku = 'your_product_sku'
Posted by: Guest on January-07-2021

Code answers related to "find magento product data with request"

Browse Popular Code Answers by Language