0

we have to display some text in product view page under tag

if "tier prices" are available , than we want to dispaly that text

"tier prices are available"

or we have to dispalay the text

"tier prices are not available "

we are using this code : http://pastebin.com/Ye5i2TgQ = > app/design/frontend/default/theme_name/template/catalog/product/view/tierprices.phtml for displaying tier prices

please guide me about this

Baby in Magento
  • 3,167
  • 16
  • 83
  • 221

1 Answers1

2

Try like this

//$product is your current product 
if($_product->getTierPrice()) {
   echo "available";
}
else{
  echo "not available";
}

Source Link

MeenakshiSundaram R
  • 9,577
  • 7
  • 33
  • 56