Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In VM2, I can use the template override default_relatedproducts.php with the following code:

 <?php echo $field->display ?>

That outputs the HTML

<a title="x" href="x">
   <img alt="" src="x.jpg"> 
   Product Name 
</a>

My question is how to remove the Product Name in the above href codemi just want image

share|improve this question
i have tried this code but nothing happens – Creative Solution Nov 30 '12 at 7:41
<?php $image_dir = JURI::root()."images/"; foreach($this->product->customfieldsRelatedProducts as $field) { echo $field->display; ?> <img src="<?php echo $image_dir.$field->image; ?>" alt="<?php echo $field->title ?>" /> <?php } ?> – Creative Solution Nov 30 '12 at 7:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.