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
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.