View Single Post
  #3  
Old 05-25-2008, 11:43 AM
  wjbrewer's Avatar 
wjbrewer wjbrewer is offline
Banned
 

X-Adept
  
Join Date: Feb 2005
Location: Pittsburgh, PA
Posts: 504
 

Default Re: Can On Sale Mod do this?

Quote:
Originally Posted by Cyber Matrix
Can this be done with the on sale mod? I have not been able to figure it out. I think it will need to customized to make this work and Altercart is not accepting any customization at this point.

I am always available to customize the alteredCart modules. This only applies to customizations to X-Cart not related to the modules.

Quote:
Originally Posted by Cyber Matrix
Show in the wholesale pricing quantity columns, the regular price crossed out and the sale price listed below it.

For wholesale pricing there is an additional step needed to the func.js file:

Near Line 412 find this code:
Code:
if (document.getElementById('product_price')) document.getElementById('product_price').innerHTML = currency_symbol+price_format(wl_price < 0 ? 0 : wl_price);

Right BEFORE it enter:

Code:
// On Sale :: alteredcart.com // wl_price = onsale_calculate_product_discount(wl_price); // END On Sale :: alteredcart.com //

This doesn't display a Was XXX Now $$. This type of display has been the most requested item, and is going to be added as a feature shortly.

Quote:
Originally Posted by Cyber Matrix
Pick any product and have it be at the same sale price regardless of quantity (this has been an isue because all the price have wholesale pricing grid). Tried the individual discount but it will not work because a lot of products that are sold on the site are price in tiers. And each tier offers a different markup percentage.


The On Sale module uses the price that is set in the cart to calculate the discount, it doesn't know if it is a wholesale, or regular price. To have this sort of sale you would need to disable wholesale prices for the product.

Quote:
Originally Posted by Cyber Matrix
On the one sale page http://www.thepromoshop.com/onsale.php instead of having the link go to another page have the links go straight to the product pages of the items. And also have the prices showing next to the products on the on sale page listing.

Not every sale is setup the same, and not every store runs the same, so it is impossible to have the standard setup be perfect for everyone. Another popular request is to have a category of products that are onsale, or display a list of products that are included in the sales. If you wanted a link directly from the onsale.php page to the individual products you would have to have every sale setup as a individual product sale. If this is your setup, this can be customized.
Reply With Quote