JDog21:
- I did NOT DO STEP 1a (editing the tpl_header) because I **could not find **any custom template directory(ies) that had a header_tpl file. For the short term, I didn't think this would matter, as the instructions state that this is only for the purpose of preventing the My Account from showing up after the COWA users enter their order number and e-mail. --I thought I'd worry about this issue later)
This file is located in the /includes/templates/YOUR_TEMPLATE/common folder. Don't you love how stuff is hidden? :)
JDog21:
So, today, I reinstalled it. I did not install the SQL patch again, as I'm sure it's still there. Same result.
...
3)I installed the SQL patch. This was the first time I"ve ever done that. I copied the stuff in the install package, and pasted it in there, and then hit "send" ..... (yes, I made sure it ended with a ; )
...
- I went to the Admin, configuration, and there is no COWOA selection available. I could not set the three parametres as specified.....
I had the same issue with this module. COWOA wasn't displaying in the configuration drop down menu. To solve my problem, I re-ran the second half of the SQL install file. The portion i re-ran was this:
INSERT INTO configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) VALUES (NULL, 'COWOA', 'Set Checkout Without an Account', '1', '1');
SET @configuration_group_id=last_insert_id();
UPDATE configuration_group SET sort_order = @configuration_group_id WHERE configuration_group_id = @configuration_group_id;
INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES
(NULL, 'Cowoa', 'COWOA_STATUS', 'false', 'Activate COWOA Checkout? <br />Set to True to allow a customer to checkout without an account.', @configuration_group_id, 10, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
(NULL, 'Enable Order Status', 'COWOA_ORDER_STATUS', 'false', 'Enable The Order Status Function of COWOA?<br />Set to True so that a Customer that uses COWOA will receive an E-Mail with instructions on how to view the status of their order.', @configuration_group_id, 11, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
(NULL, 'Enable E-Mail Only', 'COWOA_EMAIL_ONLY', 'false', 'Enable The E-Mail Order Function of COWOA?<br />Set to True so that a Customer that uses COWOA will only need to enter their E-Mail Address upon checkout if their Cart Balance is 0 (Free).', @configuration_group_id, 12, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
(NULL, 'Enable Forced Logoff', 'COWOA_LOGOFF', 'false', 'Enable The Forced LogOff Function of COWOA?<br />Set to True so that a Customer that uses COWOA will be logged off automatically after a sucessfull checkout. If they are getting a file download, then they will have to wait for the Status E-Mail to arrive in order to download the file.', @configuration_group_id, 13, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');
UPDATE configuration SET configuration_value = 'True' WHERE configuration_title = 'Use split-login page';
I haven't completed the process and confirmed the module working yet, but that should give you a point in the right direction. Assuming it works for you :D
EDIT: I got the module working