VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: macauley70 on July 09, 2014, 15:46:58 PM

Title: hidde stock for non registered users in flypage
Post by: macauley70 on July 09, 2014, 15:46:58 PM
hi.

I want hidde stock for non registered users

i use this code on flypage for show stock

Quote<div class="vmMainPage3">
          <div class="prod_details">
               <?php  if( $this->get_cfg('showManufacturerLink') ) { $rowspan = 5; } else { $rowspan = 4; } ?>
               <div class="vm_main_info clearfix">
                    <div class="lf">
                    <?php echo str_replace('<br/>', '', $product_image); ?>
                    </div>
                    <div class="rcolumn">
                         <h1><?php echo $product_name ?> <?php echo $edit_link ?></h1>
                         <h3><? echo $product_sku ?></h3>
                         <h4><? echo $product_in_stock ?> En Stock</h4>
                                                 <div class="pprice">
                         <?php echo $product_price_lbl ?> <?php echo $product_price ?>
                                                  </div>
                    </div>
               </div>

I want show stock only for registered users and non registered users dont show stock.

thanks alot


Title: Re: hidde stock for non registered users in flypage
Post by: AH on July 09, 2014, 16:05:58 PM
if ($user->id != 0  ) {

show this

}
Title: Re: hidde stock for non registered users in flypage
Post by: macauley70 on July 10, 2014, 09:42:15 AM
thanks hutson

one question more

In whta part of the code i put this, in whta line, bwttewn what?
Title: Re: hidde stock for non registered users in flypage
Post by: GJC Web Design on July 10, 2014, 09:52:52 AM

<?php if ($user->id != 0  ) { ?>
<h4><? echo $product_in_stock ?> En Stock</h4>
<?php } ?>