I have a fresh install of 1.3.9h on the website http://eshop.pasakaleris.com
I have installed Dual Pricing, v.1.7 today June 14th.
I easily figured out how it is working.
Before installing it, I installed EasyPopulate and both working fine together.
I also made an addition for my customer, and copied customers.php to wholesalers.php [before doing all the above], and added several new fields in customers table [about 150 fields], because my customer is a Whole-Whole saler and sells to the wolesalers [network all over Greece], so we needed a seperate page, to administer the wholesalers. Everything works fine.
After I installed Dual Prices module, I edited a product and added for eg. wholesale price 510.00-495.00-480.00, then I edited a customer to level 1, then 2 then level 3 and prices are displaying right with every change I made.
Then, while displaying customers in Admin, I realized that RADIO BUTTON Selection for Wholesale, above Gender selection , WAS MISSING, because I saw that column Retail/Wholesale was giving me blank, instead of Yes or No.
I search the files again and didn't find anything for configuration key insertion. Because configuration key DISPLAY_WHOLESALE was missing, it was never was inserted.
I believe that somebody forgot this, when packing the module, so I made the following :
ATTENTION : BEFORE YOU RUN THE FOLLOWING, CHANGE THE "YOUR_DATABASE" with your real database name.
When you run it, go to Configuration->My Strore, and you will see the selection [maybe]
above Store Address and Phone [depends if you have made other additions in configuration table]
Code:
INSERT INTO `YOUR_DATABASE`.`configuration` (
`configuration_id` ,
`configuration_title` ,
`configuration_key` ,
`configuration_value` ,
`configuration_description` ,
`configuration_group_id` ,
`sort_order` ,
`last_modified` ,
`date_added` ,
`use_function` ,
`set_function`
)
VALUES (
'899', 'Display Wholesale Prices', 'DISPLAY_WHOLESALE', 'false', 'Set to True, and you will be able to select Yes or No when you edit a customer.<br /><br />You will see this selection above the customers Gender.', '1', '17', NULL , '2011-06-14 20:44:18', NULL , 'zen_cfg_select_option(array(''true'', ''false''),'
);
After this, I can see the Radio buttons, above Gender selection when edditing a customer, BUT, I still can't figure out what the point of this selection ???
When I set level 0 [zero] for a customer, he can't see wholesale prices, then when I set level 1 to 3 I can see the prices change.
When I set WholeSale Radio [above gender selection] to Yes or No, I really do not see any difference.
Could somebody please explain in details, make a diagramm or sth what is the use of this Radio selection ?
Thanks in advance.