I want to remove Manufacturer sort from category display but I can't find where is located.
Hi,
Can you provide screenshot?
Best Regards,
Trivedi kartik.
It's right from product sort
[attachment cleanup by admin]
Hello,
You need to change in below file:-
components/com_virtuemart/views/productdetails/tmpl/default.php
make comment at below code:-
Quote<?php // Manufacturer of the Product
if(VmConfig::get('show_manufacturer', 1) && !empty($this->product->virtuemart_manufacturer_id)) { ?>
<div class="manufacturer">
<?php
$link = JRoute::_('index.php?option=com_virtuemart&view=manufacturer&virtuemart_manufacturer_id='.$this->product->virtuemart_manufacturer_id.'&tmpl=component');
$text = $this->product->mf_name;
/* Avoid JavaScript on PDF Output */
if (strtolower(JRequest::getWord('output')) == "pdf"){
echo JHTML::_('link', $link, $text);
} else { ?>
<span class="bold"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DETAILS_MANUFACTURER_LBL') ?></span><a class="modal" rel="{handler: 'iframe', size: {x: 700, y: 550}}" href="<?php echo $link ?>"><?php echo $text ?></a>
<?PHP } ?>
</div>
<?php } ?>
<?php echo $this->product->mf_logo; ?>
</div>
Best Regards,
Trivedi kartik.
MobiVM, he is talking about the dropbox on the category page
OP: its able to be turned off in the newest version.
Yes there is option in config of the new version 2.0.0-RC-2M.
But didn't work.
did you "update or install tables if necessary" ?
Yes I have made this
If you can't disable show manyfacturers on browse page you can go to
/administrator/components/com_virtuemart/models/product.php
And you can comment line 1375 and 1376
Quote from: rosen4o on November 14, 2011, 18:32:42 PM
If you can't disable show manyfacturers on browse page you can go to
/administrator/components/com_virtuemart/models/product.php
And you can comment line 1375 and 1376
You should do it also on line 1377.
;)