V. 1.8: Call for Price but Show Old Price

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 Jahre weitere
In NC 1.8 when I select 'Call for Price' both the current and old price disapear and the line 'Call for Price' comes up instead.

I wish to show the 'Call for Price' along with the 'Old Price'; how do I do that? I am using 'Variants in Grid'.

Any help would be much appreciated.



Cheers - Helger
13 Jahre weitere
Hi Helger,

try this

modules / ProductPrice1.ascx.CS

find the following (line 71 ?)

                    else
                    {
                        if (productVariant.CallForPrice)
                        {
                            lblPriceValue.Text = GetLocaleResourceString("Products.CallForPrice");
                            phOldPrice.Visible = false;
                            phDiscount.Visible = false;
                        }

and change   phOldPrice.Visible = true;

you will need to recompile after this change

- hayden
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.