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

show stock level ONLY in product detail

Started by danilo58, February 10, 2017, 14:28:39 PM

Previous topic - Next topic

danilo58

Hi, it is possible to show the stock level ONLY in product detail (and shopping cart) but not in category list?

AH

#1
Yes - you need to do a display template override

components\com_virtuemart\sublayouts\products.php

Comment this out:-

if ( VmConfig::get ('display_stock', 1)) { ?>
<span class="vmicon vm2-<?php echo $product->stock->stock_level ?>" title="<?php echo $product->stock->stock_tip ?>"></span>
<?php }
echo shopFunctionsF::renderVmSubLayout('stockhandle',array('product'=>$product));
?>




Put the new changed file in:

templates\YOURTEMPLATE\html\com_virtuemart\sublayouts\products.php
Regards
A

Joomla 3.10.11
php 8.0

danilo58

Oh, please tell me how I comment this?

if ( VmConfig::get ('display_stock', 1)) { ?>
               <span class="vmicon vm2-<?php echo $product->stock->stock_level ?>" title="<?php echo $product->stock->stock_tip ?>"></span>
            <?php }
            echo shopFunctionsF::renderVmSubLayout('stockhandle',array('product'=>$product));
            ?>

AH

Regards
A

Joomla 3.10.11
php 8.0