v3.6 Appendix

Overview
Please read carefully. v3.6 updated the Stripe API library and moved pagination HTML to the template folders. The changes are shown below and will affect your installation if you don`t use the patch option to update the system templates.

This updated applies to v3.4 or v3.5 of Maian Cart ONLY. Previous versions did not support Stripe.
Pagination HTML Moved to Templates
If they don`t exist, copy the following to your installation:

admin/templates/html/pagination/*
content/**theme**/html/pagination/*

* denotes ALL files.
Stripe API v3.0 Support
1 Open the 'content/**theme**/footer.tpl.php' file.

After:

<script src="BASE_PATH . '/' . $this->THEME_FOLDER; ?>/js/mc-functions.js"></script>

Add:

<?php
if ($this->STRIPE_EN == 'yes') {
?>
<script src="https://js.stripe.com/v3"></script>
<?php
}
?>

2 Replace the following file:

content/**theme/gateway-api/stripe.php
Stripe Callback Now Required
Note that the Stripe callback MUST be set up as detailed in the Stripe gateway settings. This is required for the v3.0 API to function correctly.
Return to Appendix List