4 replies [Last post]
backdrifting's picture
Offline
Joined: 10/04/2008
Juice: 373
Was this information Helpful?

How do you change the List Price title/Label to be something else? Like instead of List Price I want it to say:

Suggested Retail Price.

Tried this using String Overrides module and it didn't work.

Suggestions?

-backdrifting

Scott M. Sanders's picture
Offline
Joined: 04/24/2009
Juice: 323
Re: Change List Price label?
backdrifting's picture
Offline
Joined: 10/04/2008
Juice: 373
nope ... but thanks

Thanks but I read through that post already. It points one to the String Overrides module and that module is not doing it. So something is still not totally solved here. I tried changing the label string using String overrides and it doesn't work.

-backdrifting

thiokol's picture
Offline
Joined: 05/07/2009
Juice: 69
Re: nope ... but thanks

I am trying to do exactly the same thing and I can also confirm that String Overrides does not work.

Any ideas?

nathan.xiitec (not verified)
nathan.xiitec's picture
You can try this

But this will only affect the uc_cart value .. I am also struggling to get a solution where the sell_price change dynamically after I select the options from the attributes. I think you can modify the uc_aac module and get the functionality done but so far no luck.

function your_module_name_cart_item($op, &$item) {
switch ($op) {
case 'load':

$item->price = 100; //I have set price to be 100

break;
}
}