Hello I would like to make changes in my Magento template product listing page right now it displays the image only and i want to write the text after the image.
I tried to edit in view.php file but its not working for me.
Hello I would like to make changes in my Magento template product listing page right now it displays the image only and i want to write the text after the image.
I tried to edit in view.php file but its not working for me.
In app/design/frontend/{Package}/{your-theme}/template/catalog/product/view.phtml you find: <?php echo $this->getChildHtml('addto') ?> and the heart image is located here.
So to customise it you go to app/design/frontend/{Package}/{your-theme}/template/catalog/product/view/addto.phtmlthen add your text as somthing like this <?php echo $this->__('your text here');?> . so not directly in view.phtml
You can find it here below
__('Add to Wishlist') ?>Still its not showing.
– Akash Mar 12 '17 at 20:20helper('wishlist')->isAllow()) : ?>- __('Add to Wishlist') ?>
– Akash Mar 12 '17 at 23:07