Search code examples
joomlavirtuemart

How to remove price amount from Virtuemart Custom field?


I have a website where I have used joomla with virtuemart. I have added a custom field Where field type is Cart Variant. But problem is I don't want to display the price in the drop down select option. You can see it from this screen short (https://i.sstatic.net/yCx3a.jpg) or (http://awesomescreenshot.com/011ih9ue8)

I want to remove the red mark item. Anyone can help me please.


Solution

  • After a long try I got the solution. I am using joomla 2.5.7 & virtuemart v2.0.12. Just follow this:

    Go to: administrator/components/com_virtuemart/models/customfields.php & find the following line it may be line number 871:

    $productCustom->text = $productCustom->custom_value . ' ' . $price;
    

    Delete . $price & that's all :)