Changeset 849016
- Timestamp:
- 01/31/2014 07:32:33 PM (12 years ago)
- Location:
- press-pay/trunk
- Files:
-
- 1 added
- 5 edited
-
.gitignore (modified) (1 diff)
-
app/view/email/order.php (modified) (1 diff)
-
app/view/email/receipt.php (modified) (1 diff)
-
assets/close.png (added)
-
press-pay.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
press-pay/trunk/.gitignore
r825285 r849016 1 1 *.*swp 2 *swo 2 3 **/.DS_Store 3 4 -
press-pay/trunk/app/view/email/order.php
r848917 r849016 24 24 Billing Address: 25 25 <div style="padding-left: 5em;"> 26 <?php echo($billing_name ); ?>26 <?php echo($billing_name ? $billing_name : $customer_name); ?> 27 27 <br> 28 28 <?php echo($billing_address_line_1); ?> -
press-pay/trunk/app/view/email/receipt.php
r848917 r849016 31 31 <div style="padding-left: 5em"> 32 32 Billing Address: 33 <div style="padding-left: 5em;"> 33 <div style="padding-left: 5em;"> 34 <?php echo($billing_name ? $billing_name : $customer_name); ?> 35 <br> 34 36 <?php echo($billing_address_line_1); ?> 35 37 <br> -
press-pay/trunk/press-pay.php
r848917 r849016 6 6 * Author: Andrew Dixon 7 7 * Author URI: http://atomicbroadcast.net 8 * Version: 1.88 * Version: 2.0 9 9 *****************************************************************************/ 10 10 /********************************** -
press-pay/trunk/readme.txt
r848917 r849016 4 4 Tags: webstore, payment, stripe 5 5 Requires at least: 3.0.1 6 Tested up to: 3. 5.17 Stable tag: 1.86 Tested up to: 3.8.1 7 Stable tag: 2.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 working with them to manage refunds and disputes. 36 36 37 = How much does it cost? = 38 39 PressPay is free to download and test. If you've configured PressPay with 40 Stripe Connect, you can also take live credit card charges with no up-front 41 cost. PressPay will then collect $0.50 on each 1 time transaction. So, we 42 don't make money until you make money. If you have 43 a need for volume pricing, contact presspay@atomicbroadcast.net and let us 44 know what we can do for you. 45 37 46 == Screenshots == 38 47 … … 44 53 == Changelog == 45 54 46 = 1.8=55 = 2.0= 47 56 Easier configuration with Stripe Connect. 48 57 = 1.7 =
Note: See TracChangeset
for help on using the changeset viewer.