Dear zakgr
Please do steps:
- go to templates\sj_revo\html\com_virtuemart\productdetails\default.php and find the code:
<ul class="nav nav-tabs" id="add-reviews" >
<li class="active"><a href="#description" data-toggle="tab"><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE') ?></a></li>
<li ><a href="#reviews" data-toggle="tab"><?php echo vmText::_('COM_VIRTUEMART_REVIEWS') ?></a></li>
<li ><a href="#others" data-toggle="tab"><?php echo vmText::_('COM_VIRTUEMART_OTHERS') ?></a></li>
</ul>
<div class="tab-content">
=> change to:
<ul class="nav nav-tabs" id="add-reviews" >
<li class="active"><a href="#description" data-toggle="tab"><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE') ?></a></li>
<li ><a href="#reviews" data-toggle="tab"><?php echo vmText::_('COM_VIRTUEMART_REVIEWS') ?></a></li>
<li ><a href="#others" data-toggle="tab"><?php echo vmText::_('COM_VIRTUEMART_OTHERS') ?></a></li>
<li ><a href="#askquestion" data-toggle="tab"><?php echo vmText::_('COM_VIRTUEMART_QUESTIONS') ?></a></li>
</ul>
<div class="tab-content">
<div class="tab-pane" id="askquestion">
<?php
// Ask a question about this product
if (VmConfig::get('ask_question', 0) == 1) {
$askquestion_url = JRoute::_('index.php?option=com_virtuemart&view=productdetails&task=askquestion&virtuemart_product_id=' . $this->product->virtuemart_product_id . '&virtuemart_category_id=' . $this->product->virtuemart_category_id . '&tmpl=component', FALSE);
?>
<div class="form-group">
<a class="ask-a-question button" href="<?php echo $askquestion_url ?>" rel="nofollow" ><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_ENQUIRY_LBL') ?></a>
</div>
<?php
}
?>
</div>
then find the code and remove it:
prntscr.com/ebemi9
Thanks