VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Coding Central => Topic started by: raheelhir on November 26, 2015, 07:15:46 AM

Title: Product Description Only For Memebers
Post by: raheelhir on November 26, 2015, 07:15:46 AM
VirtueMart 3.0.12
Joomla: 3.4

I want to hide product full description for the guest. Only registered user can see product description on product detail page. Please find attached screenshot for better understanding. 

Thank you for any help with this.
Title: Re: Product Description Only For Memebers
Post by: Jumbo! on November 26, 2015, 07:22:50 AM
You are layout overrides in your site Joomla template and you will need to customize your layout file for product details page for the same.

I will explain you the change for standard VirtueMart layout i.e. components/com_virtuemart/views/productdetails/tmpl/default.php

Find the following codes in between lines 194 to 205:
<?php
//echo ($this->product->product_in_stock - $this->product->product_ordered);
// Product Description
if (!empty($this->product->product_desc)) {
    ?>

        <div class="product-description">
<?php /** @todo Test if content plugins modify the product description */ ?>
    <span class="title"><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE'?></span>
<?php echo $this->product->product_desc?>
        </div>
<?php
    
// Product Description END


Replace above by:
<?php
//echo ($this->product->product_in_stock - $this->product->product_ordered);
// Product Description
if (!empty($this->product->product_desc) && !JFactory::getUser()->get('guest')) {
    ?>

        <div class="product-description">
<?php /** @todo Test if content plugins modify the product description */ ?>
    <span class="title"><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE'?></span>
<?php echo $this->product->product_desc?>
        </div>
<?php
    
// Product Description END


You will need to replicate the above codes in your template override.
Title: Re: Product Description Only For Memebers
Post by: raheelhir on November 26, 2015, 07:29:08 AM
Wao great brother for quick solution I am very very thanks full to you Jumbo!  :)