Sarathlal N

User friendly product availability message in Magento 1

In default, Magento never display out of stock products in store view. But we can enable this option from System » Configuration » Inventory (Catalog) » Stock options.

If we enabled this option, the Magento store display all out of stock product in store view with Out of stock as Avilability.

Today, I’m going to make it as more user friendly. I wish to add an additional text to inform that visitors can call or contact me to know more about availability in such situations.

we have different way to achieve this additional text on low stock product. Just we want to check that the product is in out of stock & if so, echo our additional text.

Either we can edit single product view template file ( yourtemplate/catalog/product/view.phtml ) or file that caused for product availability mesage (yourtemplate\catalog\product\view\type\availability\default.phtml).

<?php // Check to see if the item is in stock
if($_product->stock_item->is_in_stock <= 0): ?>
 <strong><a href="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB) ?>contacts/" title="<?php echo $this->__('Email') ?>"><?php echo $this->__('Email') ?></a></strong>
 <?php echo $this->__('or Call for Availability') ?> 1-222-333-444
<?php endif; ?>

Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!

Recent Posts

  1. Understanding the Singleton Pattern and Using Traits to Achieve Singleton in WordPress Plugin Development
  2. REST API Methods Explained with Best Practices for Building Clean and Secure APIs
  3. My 28-Day Plan to Master Modern WordPress Development Using AI Tools
  4. Scaling WordPress - How Custom Database Tables Solve the Post Meta Bottleneck
  5. WordPress Transients Explained - A Developer's Guide to Site Performance

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.