So if I am going to use Easy Populate to upload all my wholesale prices, what variable do I use in the header row? Ie, v_xxxx_xxxx
Thanks!
So if I am going to use Easy Populate to upload all my wholesale prices, what variable do I use in the header row? Ie, v_xxxx_xxxx
Thanks!
Amy McCoy
Baby Gifts and Baby Gift Baskets
What I like to do is create one product manually -- in this case, do the manual setup of the two prices -- then I download the data using EP and see what I got. This makes it foolproof (except that fools are getting better) to add your data into the right column.
Rob
YairOz, sorry but I can't really help. I just rolled all the Attribute functions over, I really don't like this aspect of ZC and do everything I can to avoid it. So I'm not to familiar with what's going on there.
The one thing I've noticed supporting this though is that 95% of functionality problems is do to FTP transfers not working properly. Double and triple check all your files.
hy everyone!
i can't seem to find the answer in previous posts so...
how do i set up my site so that all customers after registration automatically get Wholesale pricing level 1?
BTW, great mod, saved me... BIG thanx to the author!
The easiest way I can think to set that up would be to change the default entry in the MySQL data base, that way a customer will receive Pricing level 1 automatically.
*** Backup your database!!!! ***
Use this line to delete the current SQL formatting:
ALTER TABLE `customers` DROP `customers_whole` ;
Use this to re-insert the column with the new setting:
ALTER TABLE `products` ADD `products_price_w` VARCHAR( 150 ) DEFAULT '1' AFTER `products_price`;
it doesn't work. I get an error trying to log in. Unfortunately, i wasn't thinking because i had 17 customers online when it crashed and restored my db before i got to copy the error message...
anyway, there was something like an error in db field regarding customers. SORRY...
any other ideas, maybe?
Okay, should have worked... I tested it on a cart but no big deal... Remember it's always best to have a development cart as a backup... That way your site doesn't go down like that. Try modifying your includes/modules/create_account.php file on lines 256-257 Add a new line so it looks like this:
This will automatically add the value into the DB upon account creation... Go back and manually update all your customers.PHP Code:
'customers_authorization' => (int)CUSTOMERS_APPROVAL_AUTHORIZATION,
'customers_whole' => 1
);
I know i should have a development cart and i used to have one, but... I accidentally erased it from my server and didn't have the time to set it up again.
Anyway, this code still doesn't work. i did what you said and registered myself as a new user, but in admin i have Wholesale = 0. I still have to set it manually to 1.
Maybe there's a problem with using a template? I'm using gloss_black.
I you want to check for yourself, the site is www.bali.hr
Sorry I forgot that customers_whole is a varchar not an int value. which makes no sense to me but I haven't had the chance to change it yet... So here's the new code this will work, promise :)
The only difference is that now the value for customers_whole is enclosed in single quotes.PHP Code:
'customers_authorization' => (int)CUSTOMERS_APPROVAL_AUTHORIZATION,
'customers_whole' => '1'
);
Bookmarks