Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • hoknight Friend
    #975961

    Hi,

    Is it possible display the Category name under the product name on each product in the VirtueMart Products module?

    Thanks


    1. ScreenShot1239
    Ninja Lead Moderator
    #976235

    Hi,

    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

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 1 reply, has 2 voices, and was last updated by  Ninja Lead 7 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum