Search code examples
phpmagento

Minimum Order Amount in magento


Is there any way to get minimum order amount code in Magento, i want to add it in custom field of my home page, please help me with this

Thank you


Solution

  • you can get with getStoreconfig

    $amount = Mage::getStoreConfig('sales/minimum_order/amount', $storeId);
    

    pass $storeId if you have multiple store.

    hope this will sure help you.