News:

Looking for documentation? Take a look on our wiki

Main Menu

Remove : free from custom fields

Started by dpodesta, January 06, 2012, 11:05:35 AM

Previous topic - Next topic

dpodesta

I have been looking for a way to remove : free from the custom field drop down for some time.

I'm really not sure why anyone would want free to be their if there isn't a price. Wouldn't it be more of a common requirement to have nothing there.

I've read a post about using the lanuages overide file.

I really don't understand how to do that. I don't know what line to copy and past in there, do I just past the word free in there??

Can anyone please help give some instructions on how to do this?

adham

#1
Removing Free is not a problem, good luck removing the : colon though. it is a nightmare.

Word Free can be removed in the language file en-GB.com_virtuemart.ini, you can delete it or rename it to anything you want

PRO

<?php $field->display  = str_replace( ':', '', $field->display) ?><?php echo $field->display ?>

adham

#3
Quote from: BanquetTables.pro on January 06, 2012, 15:49:43 PM
<?php $field->display  = str_replace( ':', '', $field->display) ?><?php echo $field->display ?>


Where ? in what file?
I did replace it in default.php on line 183 and 194 but it is still showing. maybe a more detailed solution instead of just putting a line of code in the reply?
Thanks

OK Here it is:
In you product view tmpl open the default.php
look for this line
<span class="product-field-display"></span>

Replace it with:
<span class="product-field-display"><?php $field->display = str_replace( ':', '', $field->display) ?><?php echo $field->display ?></span>

To remove the ":" colon from the custom image field

PRO