==============================================================================
"Stripe Payment Gateway Pro" Instructions

Author: Clear Thinking, LLC
E-mail: johnathan@getclearthinking.com
Website: http://www.getclearthinking.com
==============================================================================

1. Backup your OpenCart installation, just to be safe.



2. Make sure a recent version of vQmod is installed (preferably 2.5.1 or
later). You can check your vQmod version in the /vqmod/vqmod.php file. If you
do not have vQmod installed, you can download it for free from www.vqmod.com



3. Using an FTP application, upload the extension files to your server. To do
this, unzip the .zip bundle, and then upload the contents of the "upload"
folder to the root of your OpenCart installation. (Note: make sure you're
uploading the CONTENTS, and not the "upload" folder itself.) For further
information on how to upload files via FTP, view this video tutorial:

https://www.youtube.com/watch?v=BQrgJeOAIQ8

If you prefer the extension be installed for you as a paid service, contact
Clear Thinking at the above e-mail address for details.



4. If updating from a previous version, make sure to click "Save" in the
admin panel to apply any new settings. You can ignore the rest of the
following instructions.



5. If installing for the first time, navigate to:
Extensions > Payments > Stripe Payment Gateway Pro > click Install



6. All documentation for the extension is built into the admin panel itself, in
the form of help text and tooltips. Please make sure you read all of that
information carefully for each admin panel setting. If you have further
questions about any specific setting, or any problems using the extension,
please contact Clear Thinking at the above e-mail address.



7. Additional information (called metadata) will be passed to Stripe along
with the usual payment information. The information passed is: store name,
order id, customer info (name, email, telephone, customer id), products,
order comment, and ip address. You can see this information when viewing a
payment in your Stripe admin panel, by clicking on a payment.



8. To improve Stripe's fraud detection, you can optionally include this
script in your header.tpl file, somewhere before the closing </head> tag:

<script src="https://js.stripe.com/v3/"></script>



9. The customer's account panel to edit cards and cancel subscriptions can
be found at the URL:

http://www.yourdomain.com/index.php?route=extension/cards

You can add a link to that page by making an edit like this:

------------------------------------------------------------------------------
IN:
/catalog/view/theme/YOURTHEME/template/account/account.tpl

AFTER:
<li><a href="<?php echo $wishlist; ?>"><?php echo $text_wishlist; ?></a></li>

ADD:
<li><a href="index.php?route=extension/cards">View your stored cards and subscriptions</a></li>
------------------------------------------------------------------------------
