Viewing 2 posts - 1 through 2 (of 2 total)
-
AuthorPosts
-
hoknight Friend
hoknight
- Join date:
- July 2009
- Posts:
- 400
- Downloads:
- 128
- Uploads:
- 225
- Thanks:
- 110
- Thanked:
- 4 times in 4 posts
October 13, 2016 at 9:20 am #975961Hi,
Is it possible display the Category name under the product name on each product in the VirtueMart Products module?
Thanks
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
October 14, 2016 at 7:25 am #976235Hi,
This is custom work from view layout for Virtuemart and you can do that as my suggestion below
Open templates/ja_playstore/html/com_virtuemart/sublayouts/products.php file
find and change
<?php echo shopFunctionsF::renderVmSubLayout('prices',array('product'=>$product,'currency'=>$currency)); ?>
to
<?php for ($i=0; $i < count($product->categoryItem); $i++) { if ($i==count($product->categoryItem)-1) { echo $product->categoryItem[$i]['category_name']; } else { echo $product->categoryItem[$i]['category_name'].", "; } } echo shopFunctionsF::renderVmSubLayout('prices',array('product'=>$product,'currency'=>$currency)); ?>
Hope it helps
Regards
1 user says Thank You to Ninja Lead for this useful post
AuthorPostsViewing 2 posts - 1 through 2 (of 2 total)This topic contains 1 reply, has 2 voices, and was last updated by Ninja Lead 8 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum