phildrink
Hi
it must be publish as its before, If you want to hide the description and it Review it will not show.
Open file "/html/com_virtuemart/productdetails/default.php" in template "gk_quark".
Find this code
<ul id="product-tabs">
<li
data-toggle="product-description"
class="active"
>
<?php echo vmText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE') ?>
</li>
<?php if($this->allowRating || $this->allowReview || $this->showRating || $this->showReview) : ?>
<li
data-toggle="customer-reviews"
>
<?php echo vmText::_ ('COM_VIRTUEMART_REVIEWS') ?>
</li>
<?php endif; ?>
</ul>
Replace it with
<ul id="product-tabs">
<li
data-toggle="product-description"
>
<?php echo vmText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE') ?>
</li>
<?php if($this->allowRating || $this->allowReview || $this->showRating || $this->showReview) : ?>
<li
data-toggle="customer-reviews" class="active"
>
<?php echo vmText::_ ('COM_VIRTUEMART_REVIEWS') ?>
</li>
<?php endif; ?>
</ul>
it will make the Review tab active.
You can remove The Description tab code as well as per needs.