Only a few steps more to be success. (Almost the same of #1670)
The "Fast and Easy Checkout Configuration" page still didn't showed content but only got save changes and cancel button.
Attachment 13468
Below is line 234-237 of configuration.php, which control every save changes and cancel button in configuration. (like the capture above).
PHP Code:
<div class="mod-buttons">
<button class="mod-buttons-call"><?php echo TEXT_BUTTON_SAVE_CHANGES; ?></button>
<a href="<?php echo zen_href_link(FILENAME_CONFIGURATION, 'gID=' . $_GET['gID']); ?>" class="mod-buttons-second"><?php echo TEXT_BUTTON_CANCEL; ?></a>
</div>
However, I couldn't figure out where is the content code of the form and why it's no show......
Step 11. In the Admin Panel, go to Configuration->Fast and Easy Checkout Configuration and set "Easy Sign-Up and Login" to true.
Step 12. In the Admin Panel, go to Configuration->Fast and Easy Checkout Configuration and Enable the mod by setting "Fast and Easy Checkout" to true.
Since I can't change the status of both step 11 & 12, I decided to change it by code (like below), but nothing happen:
Below: administrator>includes>installers>fec>new.php
Line 18
PHP Code:
('Fast and Easy Checkout', 'FEC_STATUS', 'true', 'Activate Fast and Easy Checkout? (note: Easy Sign-up and Login must be disabled separately)', " . $configuration_group_id . ", 10, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
Line 28
PHP Code:
('Easy Sign-Up and Login', 'FEC_EASY_SIGNUP_STATUS', 'true', 'Activate Easy Sign-Up and Login?', " . $configuration_group_id . ", 20, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
Could anyone figure out a way to do this?
Either one solution of below:
1.) Display the content of "Fast and Easy Checkout Configuration" page
2.) change the "Fast and Easy Checkout Configuration" page status through coding
Many Thanks,
Eva
Bookmarks