Greetings, I'm building a new site using VirtueMart 3 and Joomla 3.4. My product is educational materials. I don't need to categorize by manufacturer, but I do need to categorize by topic.
On my manufacturers details page for the topic of first aid, the browser tab page title displays: Manufacturer Details FIRST AID.
It looks like VM automatically appends "Manufacturer Details" to the front of the browser tab page title, which I would like to delete so that the title is just "FIRST AID". I've attached a screenshot.
Question: I'd like to edit the browser page title for my manufacturer detail pages. Is this possible?
Any help would be much appreciated!
try setting the lang constant COM_VIRTUEMART_MANUFACTURER_DETAILS to empty
the title is from the view.html.php
$document->setTitle(vmText::_('COM_VIRTUEMART_MANUFACTURER_DETAILS').' '.strip_tags($manufacturer->mf_name));
That worked perfectly. Thank you very much!!! ;D