News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Virtumart Related Prroducts

Started by faiqnaseem, November 24, 2012, 08:37:02 AM

Previous topic - Next topic

faiqnaseem

how to display only thubnails of products in related products area,my current code is showing the link too i-e inage with href tittle of product name.I just want to show the thumbnails

<?php
foreach ($this->product->customfieldsRelatedProducts as $field) {
?>
?php echo $field->display ?>      
<?php } ?>


bytelord

#1
Hello,

This i think will not work with str_replace, you will use preg_replace to replace the string after img alt and before </a> ... so

$field->display = preg_replace('#(<img.*?>).*?(</a>)#', '$1$2', $field->display);

This will remove the <a> link text, so your code will look like:

<?php
foreach ($this->product->customfieldsRelatedProducts as $field
{
$field->display preg_replace('#(<img.*?>
).*?(</a>)#', '$1$2', $field->display);
echo $field->display;
}
?>


Please test it and let me know if is working for you

Regards
Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!

faiqnaseem

there is php tag missing in the code,cant figure it out myself

bytelord

Hello,

Is not missing ... may be from copy paste the editors throw it out ... i place a screenshot of the code ... Please check it

without tags also:

       $field->display = preg_replace('#(<img.*?>).*?(</a>)#', '$1$2', $field->display);


Regards



[attachment cleanup by admin]
Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!

faiqnaseem


bytelord

You are welcome, good luck with your project
Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!