VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: vanaveno on November 18, 2014, 14:46:53 PM

Title: Add tags to related products
Post by: vanaveno on November 18, 2014, 14:46:53 PM
Hello I need to modify ko I might add tags to the image.

Now it is:

<div class="product-related-products">
       <h4><?php echo vmText::_('COM_VIRTUEMART_RELATED_PRODUCTS'); ?></h4>

    <?php
    foreach ($this->product->customfieldsRelatedProducts as $field) {
       if(!empty($field->display)) {
   ?><div class="product-field product-field-type-<?php echo $field->field_type ?>">
          <span class="product-field-display"><?php echo $field->display ?></span>
      </div>
   <?php }
       } ?>
        </div>

An I get title and images together like title <img... And I want to image add tags - probably spam -ample <div><img...></div><h2>title</div> Do you anybody know, where or how to manage this code?

Thanks Vana