Hello,
I'm trying to change the Administrator products listing to show the related products link in the list. (image in attachment
So far i was able to add the Title by adding the <td> on the right place.
My difficulty now is that i cannot get the related products title in the fields.
I enter this code in the product/listing.php file:
<td align="center">
<?php if($this->manage){ ?>
<a href="<?php echo hikashop_completeLink('product&task=edit&cid[]='.$row->product_related_id); ?>">
<?php } ?>
<?php echo $row->product_name; ?>
<?php if($this->manage){ ?>
</a>
<?php } ?>
</td>
But what i get is only the same product name...
Can you please tell me what can i do to make this possible?