-
uhhh i dunno how this happened
ok... since i never used salemaker before i didnt know this was an issue...
i have this above my prices in catalog admin....
ID Categories / Products Model Price/Special/Sale Quantity
Status Sort
all the prices are under SALE maker from adding..... am i wrong?
I added it to an entire category and not one item has it applied.. I am not aware of any price mods installed.. I use group pricing and that is it... thanks for any help
-
Re: uhhh i dunno how this happened
What is the problem? That is just the header of the column ... :unsure:
-
Re: uhhh i dunno how this happened
OK.. had i spoken english maybe i could have gotten my point across... what i was trying to say... is all the prices are under SALE... and that is WITHOUT sale maker.. so when i use sale maker it is not adjusting the pricing... I am assuming (ugh) that it is not adding because the prices are listed under sale and not price.... ex
Price / Special / Sale
$39.99 (this is regular price)
shouldn't normal pricing be listed like this
Price / Special / Sale
$39.99 (this should be how it looks correct?)
then if i add sale maker it should ajust the price and move it to sale????
-
Re: uhhh i dunno how this happened
This is a Product with a Normal, Special and Sale:
$120.00 $90.00 <--- both are crossed out
Sale: $100.00
Save: 17% off
Note: unless the Product has an active Special it will not be on Special ...
Note: unless the Product has its master_categories_id as that of the Sale Maker category it will not be on Sale ...
I am not sure what you mean by "move to Sale" ... that is just a table with a title in a td of the row and beneath it more rows with td ... so you kind of are losing me here ...
-
Re: uhhh i dunno how this happened
PRICE/SPECIAL/SALE
------------------ $39.99 (-'s are only to space where the price is there are no -'s in my cp)
should it look like this
PRICE/SPECIAL/SALE
$39.99
no salemaker in use
all items are like this and the items i have sale maker have no changes made... i believe this is because of this error
-
Re: uhhh i dunno how this happened
Could you post the Sale Maker settings for this?
And is it Active? As in a green icon on it and not red?
And if you look at any of the Products do they indicate that they belong to the right Category?
-
1 Attachment(s)
Re: uhhh i dunno how this happened
This is what you'll see when a product is on sale or special
-
Re: uhhh i dunno how this happened
Thank you kindly ... beats my text display hands down ... :smile:
-
Re: uhhh i dunno how this happened
sale maker is active 25% discount and no it doesnt look like that... :(
Date Added: 02/27/2007
Last Modified: 02/27/2007
Last Status Change: 02/27/2007
Deduction: 25.0000 Percent
Pricerange: $0.00 to $299.00
Specials Condition: Apply SaleDeduction to Specials Price - Otherwise Apply to Price
Starts: Immediately
Expires: 03/31/2007
BABYDOLLS 0.25 Percent <------ Folders show this under price..........
2 piece babydoll with satin bow and matching thong 80100 $36.25 <------- item within that folder
-
Re: uhhh i dunno how this happened
-
Re: uhhh i dunno how this happened
I cannot reproduce this error ...
Perhaps it is time for a peek at your Admin ...
Could you PM me your Admin URL and access and the Sale and Category info that this is happening with so I can peek around when I get some time? :smile:
-
Re: uhhh i dunno how this happened
You are missing the master_categories_id on your products ... :eek:
Did you import your data? This is often the cause of this problem as import programs often do not manage the setting for the master_categories_id and products_price_sorter properly ...
Do you have Linked Products?
-
Re: uhhh i dunno how this happened
*sigh* I used easy populate to upload products.... i dont think there are any linked items.... is there a FAST way to fix this or do I have to go to each and every items and adjust the master category?
i see this in the item description...
Product Master Category: ID# 0
NOTE: Master Category is used for pricing purposes where the
product category affects the pricing on linked products, example: Sales
and i see this in sale maker......
Warning : 1 sales already include this category
-
Re: uhhh i dunno how this happened
Okay ... well this is making a mess of things ...
One method to fix the master_categories_id and products_price_sorter ... is to run the Resets on the Tools ... Store Manager ...
1 backup your database
2 run the reset master categories id
3 run the reset products price sorter
4 review all to ensure that the pricing is right
The rest on the master_categories_id will pick the first categories_id found in the products_to_categories table and use that to set the master_categories_id for the products ...
Should it make messies, there are ways to globally set a categories_id as the master_categories_id for all of its products ...
NOTE: the backup is a really really really good idea ...
-
Re: uhhh i dunno how this happened
backing up... reseting away... will respond with results.. thanks.... *sigh*
-
Re: uhhh i dunno how this happened
I LooOOoOoOOooOVe ZenCart and all the folks who make it happen.. Thanks linda... you're the best.... :lookaroun<--sad with happiness....
so is this a lesson learned with easy populate? and is there a better way to populate your site with thousands of products ?
and... as i have said before... if we (this especially means me) browse through the POWER of zencart and its features the solutions are staring at us(again i especially mean me) right in the face...... oF course that would imply that we (yes yes again me) would know what we are looking for..... :D
oh btw... that fixed it rather easily.... :D
-
Re: uhhh i dunno how this happened
Thanks for the update that fixing the missing master_categories_id caused during the import of your products with easy populate fixed the pricing issues ... :smile:
You'd have to speak to the author of Easy Populate ... we really have nothing to do with the add-ons ...
-
Re: uhhh i dunno how this happened
UHt ohhhhh when i go to those categories in the catalog i get this....
CAMISOLES
Fatal error: Call to undefined function: () in /home/poison67/public_html/yourlingerieparty/includes/functions/functions_prices.php on line 209
deactivated sale and can access catalog on sale items... gulp.. guess it wasnt fix
-
Re: uhhh i dunno how this happened
Could you post lines 200 to 220 of that file?
-
Re: uhhh i dunno how this happened
NOTE: be sure to post from the file on the server! :smile:
-
Re: uhhh i dunno how this happened
$show_sale_discount = '';
$display_normal_price = round(zen_display_group_pricing($display_normal_price,$products_qty),2);
if (SHOW_SALE_DISCOUNT_STATUS == '1' and ($display_special_price != 0 or $display_sale_price != 0)) {
if ($display_sale_price) {
if (SHOW_SALE_DISCOUNT == 1) {
if ($display_normal_price != 0) {
$show_discount_amount = $number_format(100 - (($display_sale_price / $display_normal_price) * 100),SHOW_SALE_DISCOUNT_DECIMALS);
} else {
$show_discount_amount = '';
}
$show_sale_discount = '<span class="productPriceDiscount">' . '<br />' . PRODUCT_PRICE_DISCOUNT_PREFIX . $show_discount_amount . PRODUCT_PRICE_DISCOUNT_PERCENTAGE . '</span>';
} else {
$show_sale_discount = '<span class="productPriceDiscount">' . '<br />' . PRODUCT_PRICE_DISCOUNT_PREFIX . $currencies->display_price(($display_normal_price - $display_sale_price), zen_get_tax_rate($product_check->fields['products_tax_class_id'])) . PRODUCT_PRICE_DISCOUNT_AMOUNT . '</span>';
}
} else {
if (SHOW_SALE_DISCOUNT == 1) {
$show_sale_discount = '<span class="productPriceDiscount">' . '<br />' . PRODUCT_PRICE_DISCOUNT_PREFIX . number_format(100 - (($display_special_price / $display_normal_price) * 100),SHOW_SALE_DISCOUNT_DECIMALS) . PRODUCT_PRICE_DISCOUNT_PERCENTAGE . '</span>';
} else {
$show_sale_discount = '<span class="productPriceDiscount">' . '<br />' . PRODUCT_PRICE_DISCOUNT_PREFIX . $currencies->display_price(($display_normal_price - $display_special_price), zen_get_tax_rate($product_check->fields['products_tax_class_id'])) . PRODUCT_PRICE_DISCOUNT_AMOUNT . '</span>';
}
}
}
lines 200-225
-
Re: uhhh i dunno how this happened
That is too weird ...
I am not seeing the cause of problem although I can make it happen easy enough on your site ...
But I don't see where it is throwing that particular error ...
Unfortunately you have used the Classic template and not your own customized template and overrides method so this is harder to test for ...
If this a live site or are you working on it?
-
Re: uhhh i dunno how this happened
i will reactivate the sale.. this should show you the error.. i never really grasped the overrides ... i understand the seperate folder and stuff just didnt get what files i had to correct to make it read the overrides... but that is a moot point... i will re activate the sale maker and upload the entire file...
-
Re: uhhh i dunno how this happened
I was checking your admin and already did that ... :smile:
What I need to know is this a Live site or not?
-
Re: uhhh i dunno how this happened
uhm... yeah its a live site... but if it needs to go down no worries....
-
Re: uhhh i dunno how this happened
I was going to have you try an experiment ...
Rename the directory:
/includes/templates/classic
to the name:
/includes/templates/classic_HIDE
This will make your site look all weird ...
Then, turn that Sale back on ...
Does the error message still happen?
I am trying to see if this might be a template issue or not ... but this is hard to do as we do not know did you only touch things using /classic directories or did you touch other things ...
Do you have add-ons on this site?
-
Re: uhhh i dunno how this happened
error still happens.. site looks funny actually and yes i have several addons... gimmie a minute to list them all.......
-
Re: uhhh i dunno how this happened
easy populate
image handler
user tracking
google checkout
cross sell and
cross sell advanced
I think thats it
i have deactivated the sale maker....
*kix himself*
bad boy
-
Re: uhhh i dunno how this happened
Without doing a compare of your files on the server with a clean Zen Cart I really cannot put a finger on this one ...
Try this:
Make a new Category ...
Add manually 2 products ...
Put only that Category on Sale with the Sale that you have already created ...
Do you still get that weird error?
-
Re: uhhh i dunno how this happened
yup same exact error on new category and products....
-
1 Attachment(s)
Re: uhhh i dunno how this happened
here is the file in its entirety let me know if there is anything else i can maybe do to help ....
-
Re: uhhh i dunno how this happened
Make the new Category ...
Or use same Category but delete whatever products you added ...
Add 2 new product ... BUT, from the dropdown set the Product type to Product Free Shipping ...
Now put this Category on Sale as the ONLY category on Sale with this sale in Sale Maker ...
-
Re: uhhh i dunno how this happened
Your functions_price.php file is not from v1.3.6 ...
If I am not mistaken that is the version of Zen Cart that you should be running ...
You have an old, out of date version ...
I am not sure what other files are out of date but this could very well be an issue here ...
-
Re: uhhh i dunno how this happened
same error.. admin shows correct pricing tho....
Awesome Stuff $99.99
Sale: $74.99
Save: 25% off
-
Re: uhhh i dunno how this happened
Quote:
Originally Posted by
Ajeh
Your functions_price.php file is not from v1.3.6 ...
If I am not mistaken that is the version of Zen Cart that you should be running ...
You have an old, out of date version ...
I am not sure what other files are out of date but this could very well be an issue here ...
This was a CLEAN install.... 1.36... should i re upload that particular file... and would any of the add-ons affect this file?
-
Re: uhhh i dunno how this happened
Any add-on might contain an old file ... this is why you need to always check what exactly is being loaded to your site ...
Try renaming your current file to:
function_prices.php_OLD
And reload a clean one from v1.3.6 ...
This may or may not fix things as there could be other issues involving other files that are out of date involved here ...
-
Re: uhhh i dunno how this happened
ok well that has fixed the problem..
I normally read add-ons thoroughly and make sure to only update files and not replace them... I looked through my addons and none of them edited this file... is it possible that it simply got corrupted or was it legitimately a old file?
-
Re: uhhh i dunno how this happened
ok.... i may never be able to do a sale.... i add to cart and get this
Fatal error: Call to undefined function: zen_display_group_pricing() in /home/poison67/public_html/yourlingerieparty/includes/classes/shopping_cart.php on line 1048
NOW the group pricing thing has giving me an error before... User tracking doesnt work when someone has an active shopping cart.... and gives me a GROUP PRICING error....
Could this be a group pricing issue ....... ?
-
Re: uhhh i dunno how this happened
heh.... i must have edited that file
Fatal error: Call to undefined function: zen_display_group_pricing() in /home/poison67/public_html/yourlingerieparty/includes/classes/shopping_cart.php on line 1048
for sidebox......
maybe new item side box......
...... i dunno... but i dont understand the group pricing issue...
i renamed the old file back to original.. no errors but no sale... i guess i will have to compare the two files and check the differences..........
-
Re: uhhh i dunno how this happened
update....i disabled the whois online sidebox and the errors went away.... now the problem is the math is wrong... if i set a salemake sale to 50% off.. it is going crazy... some items get 55% some get 83% some get 100% uh...
<------lost in space......
i don't understand also why the whois online sidebox is causing issues....
i also don't understand why the crazy discounting.... *sigh*
this seems to be an issue... since i dont really understand the overrides... i didnt do them.. and a fresh install would kill me... ugh.... i feel like charlie brown....
all help is appreciated.....
:sleepy::bored::no::lamo::yuck: