My turn to add to this thread - I really hope someone is out there still moderating it!
I have attempted to change the page that the "Call for Pricing" link goes too and while I do not get an error, the link seems to go to the right page, but it renders the VM home page content instead of the desired page content...
I will explain in detail what I have done to date:
Opened the english.php file and changed the text on line 285 to read "Contact for Pricing"
I would like then this link to go an existing contact form on the website located at this hard coded URL:
http://www.lumenytesecurity.com/index.php?option=com_contact&view=contact&id=12&Itemid=217So the next step, according to the forums on this topic was to go to this file:
themes/default/templates/common/price.tpl.php
line 7 and change this code:
$link = $sess->url( $_SERVER['PHP_SELF'].'?page=shop.ask&product_id='.$product_id.'&subject='. urlencode( $VM_LANG->_('PHPSHOP_PRODUCT_CALL').": $product_name") );
echo vmCommonHTML::hyperLink( $link, $VM_LANG->_('PHPSHOP_PRODUCT_CALL') );
I changed it to this:
$link = $sess->url( $_SERVER['PHP_SELF'].'http://www.lumenytesecurity.com/index.php?option=com_contact&view=contact&id=12&Itemid=217'. urlencode( $VM_LANG->_('PHPSHOP_PRODUCT_CALL').": $product_name") );
echo vmCommonHTML::hyperLink( $link, $VM_LANG->_('PHPSHOP_PRODUCT_CALL') );
The key change being - adjusted the link from
?page=shop.ask&product_id='.$product_id.'&subject=
to:
http://www.lumenytesecurity.com/index.php?option=com_contact&view=contact&id=12&Itemid=217What I get is, instead of the actual form appearing in the content area, I get the modules assigned to that page, but I do not get the contact form, I get the standard content for the VM homepage...
Can someone please advise?

Or perhaps, someone can tell me how to remove the link altogether and have just the text "Contact for pricing"? I am not a code writer or developer so detailed instructions would be much appreciated.
Thank you

!