Hello,
@djie - I'm not sure if you are trying to remove the attribute pricing from a drop down on the flypage, but if you are, here is the code:
go to:
components/com_virtuemart/themes/default/templates/product_details/includes
and open the addtocart_advanced_attribute.tpl.php file
approx line 12 or so, comment out this PIECE of the line of code:
(<?php echo $options_item['sign'].$options_item['display_price'] ?>)
So, what once looked like this:
<option value="<?php echo $options_item['base_var'] ?>"><?php echo $options_item['base_value'] ?>
(<?php echo $options_item['sign'].$options_item['display_price'] ?>) </option>
Now looks like this:
<option value="<?php echo $options_item['base_var'] ?>"><?php echo $options_item['base_value'] ?>
<!-- commented out line below to remove product attribute price adjustment from drop down menu on flypage
(<?php echo $options_item['sign'].$options_item['display_price'] ?>) --> </option>
Hope that helps

*********
Ok, now I have a question for all the VM gurus out there.. where do I remove the attribute price from the Order details page??I found that if I remove this code from about line 302 in the account.order_details.tpl.php file (in components/com_virtuemart/themes/default/templates/pages/):
echo " <div style=\"font-size:smaller;\">" . $dbcart->f("product_attribute") . "</div>";
it will remove both the attribute name and price (eg. 20oz. (+5.99) gets removed) when we only want to remove the price, so users can see the attribute they chose..
So, on the Order Details page, this:Product Name
20oz (+5.99)
Turns to this:Product Name
20oz
Any help is greatly appreciated!
Thanks again,
J