Re: ZCA Bootstrap 4 Template [Support Thread]
Please copy & paste the exact error text you get in the default template.
Re: ZCA Bootstrap 4 Template [Support Thread]
I have 4 attributes that are required. This is the message I see on the default template:
Warning Please correct the following:
On the Option for: Year You picked an Invalid Selection: User Input Required
On the Option for: Make You picked an Invalid Selection: User Input Required
On the Option for: Model (3 or 4 digit number) You picked an Invalid Selection: User Input Required
On the Option for: VIN # (17 Characters Long) You picked an Invalid Selection: User Input Required
Re: ZCA Bootstrap 4 Template [Support Thread]
OK. I just submitted a fix which is not ideal, but it will work.
https://github.com/zcadditions/ZCA-B....0.0c/pull/181
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
rbarbour
I have yet been able to reproduce this but I will continue to play with.
If you can't dup it in a week or so let me know and I'll set up a test site that shows the issue. I spent a bit of time on it but haven't had enough time to debug it yet.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
Nick1973
I have been developing a website locally with mamp using the bootstrap template. Now I have transferred all the files to my hosting server, and I don't see the menu item ZCA Bootstrap Colors. It exists in the menu locally and is in the database. Any ideas why this would not be showing up?
This works properly with a fresh install. Try removing from your hosted site's configuration table the key ZCA_BODY_TEXT_COLOR.
DELETE FROM configuration WHERE configuration_key = 'ZCA_BODY_TEXT_COLOR';
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
swguy
This works properly with a fresh install. Try removing from your hosted site's configuration table the key ZCA_BODY_TEXT_COLOR.
DELETE FROM configuration WHERE configuration_key = 'ZCA_BODY_TEXT_COLOR';
... and be sure the file admin/includes/init_includes/init_bc_config.php is in place, then click the Admin Home link to rerun the init scripts. See if ZCA Bootstrap Colors appears under Tools at that point.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
swguy
Thank you - Your solution did work.
Re: ZCA Bootstrap 4 Template [Support Thread]
As a more complex but (at least arguably) better refactoring, I would suggest getting rid of the $messageStack object creation in includes/init_includes/init_zca_bootstrap.php and simply loading the correct class in the includes/auto_loaders/config.core.php based on the setting of the template.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
rbarbour
I have yet been able to reproduce this but I will continue to play with.
To dup this, I installed Ceon Manual Card, and edited includes/modules/payment/ceon_manual_card.php to add
Code:
// TESTING ONLY!!! DO NOT COPY!!!
function process_button_ajax() {
return $this->process_button();
}
The issue appears to be in includes/templates/bootstrap/templates/tpl_ajax_checkout_confirmation_default.php.
Replacing this file with the file from responsive_classic makes the bootstrap template properly handle AJAX checkout.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
swguy
To dup this, I installed Ceon Manual Card, and edited includes/modules/payment/ceon_manual_card.php to add
Code:
// TESTING ONLY!!! DO NOT COPY!!!
function process_button_ajax() {
return $this->process_button();
}
The issue appears to be in includes/templates/bootstrap/templates/tpl_ajax_checkout_confirmation_default.php.
Replacing this file with the file from responsive_classic makes the bootstrap template properly handle AJAX checkout.
I have the same issue. I am using Paypal Pro to process the credit cards. Once you get to step 3 you cannot continue to the next step. The page does not respond and you cannot check out. replacing tpl_ajax_checkout_confirmation_default.php with the responsive one does seem to fix the issue.