AbanteCart Community

AbanteCart Development => Extensions and Add-Ons => Topic started by: MessEleven on October 25, 2016, 02:01:24 AM

Title: As Low As Pricing
Post by: MessEleven on October 25, 2016, 02:01:24 AM
Are there any extensions that will show pricing "As Low As," based on discount promotions? The less expensive options get a bit buried, and this would be a tremendous sales hook.
Title: Re: As Low As Pricing
Post by: digitalt on October 25, 2016, 11:14:57 AM
You could mention it in the blurb.
Title: Re: As Low As Pricing
Post by: MessEleven on October 25, 2016, 06:12:19 PM
Actually looking for something that would present the lower price before the customer clicks to the product page.
Title: Re: As Low As Pricing
Post by: digitalt on October 26, 2016, 07:45:14 AM
The blurb would do that. They see the product picture and below it would be "As Low As $x.xx
Title: Re: As Low As Pricing
Post by: rvalani on October 26, 2016, 10:43:36 AM
Hi,
I have done that for my project..
I am attaching a screenshot of that you need to change some files..
Hope this screenshot helps you..
Note: You also need to add CSS to it
Title: Re: As Low As Pricing
Post by: digitalt on October 26, 2016, 12:19:13 PM
Without looking at the style.css file, this is inserted at the end of the file?
Title: Re: As Low As Pricing
Post by: rvalani on October 26, 2016, 12:26:26 PM
@digitalt: Just add that text where ever it is highlighted


/*CSS FOR AS LOW AS PRICE*/
.aslowas{
   color:red;
}

Note: This will make all appear "As low as" on all of your products.
Title: Re: As Low As Pricing
Post by: MessEleven on October 26, 2016, 12:37:59 PM
Nice solution. Thanks!
Title: Re: As Low As Pricing
Post by: digitalt on October 26, 2016, 12:45:06 PM
@digitalt: Just add that text where ever it is highlighted


/*CSS FOR AS LOW AS PRICE*/
.aslowas{
   color:red;
}

Note: This will make all appear "As low as" on all of your products.

Got it, thanks.