- Web templates
- E-commerce Templates
- CMS & Blog Templates
- Facebook Templates
- Website Builders
VirtueMart 2.x. How to manage products custom tabs
December 15, 2014
This tutorial will show you how to manage products custom tabs.
VirtueMart 2.x. How to manage products custom tabsYou can manage these tabs in your site back end:

-
Navigate to Components > Virtuemart in your Joomla admin panel:
-
Choose Products under Products section in Virtuemart admin panel:
-
Edit product you would like to make changes to.
Let’s take closer look at the most common custom tabs.
Description tab
Description tab allows you to show product description text.
-
Click on Product Description tab in the opened product. Edit Product Description field content:
-
Click Save button to save modification, refresh your site to see the change.
Specification tab
Specification Product tab allows you do add such product specification as: Height, Weight, String and Bolean.
Edit product under Components > Virtuemart > Products > Products.
-
Click on Custom Fields tab. Make changes under the Specification field:
Reviews tab
Under Reviews tab you can see reviews you customer left for the product:

Custom tab
Custom tab allows you to add more product information. You can add more text, images, etc.
-
Open product you would like to edit. Click on the Custom fields tab.
Make changes under the Custom field:
Save product and see the changes.
Video tab
Video tab allows you to embed video to the product page.
Navigate to your admin panel, open product you would like to edit.
-
Click on Custom Fields tab in your product settings.
-
Paste embed code for your video to the Video about us field:
In order to change Reviews and Description tabs titles, please edit language/en-GB/en-GB.com_virtuemart.ini file. Make change on the line 359:
COM_VIRTUEMART_REVIEWS="Reviews"
And line 273:
COM_VIRTUEMART_PRODUCT_DESC_TITLE="Description"
Specification, Video and Custom titles can be changed in the templates/theme/html/com_virtuemart/productdetails/default.php file. Edit lines below:
line 359:
product->customfieldsSorted['specification']) { ?>Specification
line 226:
product->customfieldsSorted['custom']) { ?>Custom
line 235:
product->customfieldsSorted['video']) { ?>Video
In order to remove custom products tabs from your site, please edit templates/theme/html/com_virtuemart/productdetails/default.php file. Remove/comment lines 202-243:
product->product_desc) { ?>product->customfieldsSorted['specification']) { ?>product->product_desc ?>Specification
product->customfieldsSorted['specification'])) { $this->position = 'specification'; echo $this->loadTemplate('specification'); } // Product custom_fields END ?>product->product_desc) { ?>loadTemplate('reviews') ?>product->customfieldsSorted['custom']) { ?>Custom
product->customfieldsSorted['custom'])) { $this->position = 'custom'; echo $this->loadTemplate('custom'); } // Product custom_fields END ?>product->customfieldsSorted['video']) { ?>Video
product->customfieldsSorted['video'])) { $this->position = 'video'; echo $this->loadTemplate('customvideo'); } // Product custom_fields END ?>
Feel free to check the detailed video tutorial below:
VirtueMart 2.x. How to manage products custom tabs