Changeset 2251087
- Timestamp:
- 02/27/2020 02:45:47 AM (6 years ago)
- Location:
- bitcoin-paywall
- Files:
-
- 2 edited
- 4 copied
-
tags/2.7 (copied) (copied from bitcoin-paywall/trunk)
-
tags/2.7/paybutton.gif (copied) (copied from bitcoin-paywall/trunk/paybutton.gif)
-
tags/2.7/readme.txt (copied) (copied from bitcoin-paywall/trunk/readme.txt) (2 diffs)
-
tags/2.7/wp-bitcoinpaywall.php (copied) (copied from bitcoin-paywall/trunk/wp-bitcoinpaywall.php) (7 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-bitcoinpaywall.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bitcoin-paywall/tags/2.7/readme.txt
r2251008 r2251087 1 === Bitcoin Cash Paywall ===1 === Bitcoin Cash ETH PayPal Credit Cards Paywall === 2 2 Contributors: bpaywall 3 3 Donate link: https://ba.net/bitcoin-pay-button … … 11 11 12 12 Easy to use automated paywall for premium content and digital goods downloads. 13 Automate your BTC and BCH payment buttons with real-time USD prices, QRcodes,14 email buy links, url pay links and button pay links.13 Automate your BTC, BCH, ETH, PayPal and Credit Cards payment buttons with real-time 14 USD prices, QRcodes, email buy links, url pay links and button pay links. 15 15 16 16 == Description == 17 17 18 18 19 Bitcoin Cash Paywall Wordpress Plugin19 Bitcoin Cash ETH, PayPal, Credit Cards Paywall Wordpress Plugin 20 20 https://ba.net/bitcoin-pay-button 21 21 22 It will allow you to create btc and bch payment links on the fly. Including23 real-time usd price and qrcode22 It will allow you to create BTC, BCH, ETH, Paypal and Credit Card payment links on the fly. 23 Including real-time usd price and qrcode 24 24 25 Pro version can also manage payment status and automatic product delivery. More crypto coins and PayPal Integrated button and QR maker. <a href="https://ba.net/bitcoin-pay-button/wordpress.html">Pro version details</a>. 25 Pro version can also manage payment status and automatic product delivery. 26 <a href="https://ba.net/bitcoin-pay-button/wordpress.html">Pro version details</a>. 26 27 27 28 <b>PRO Wordpress Plugin</b> -
bitcoin-paywall/tags/2.7/wp-bitcoinpaywall.php
r2250427 r2251087 3 3 Plugin Name: Bitcoin Paywall 4 4 Plugin URI: https://ba.net/bitcoin-paywall 5 Description: This plugin implements a Paywall using BTC, BCH. It automates your sales of digital goods or premium content.6 Version: 2. 05 Description: This plugin allows you to accept BTC, BCH, ETH, PayPal, Credit Cards. Instant Pay Buttons. No registration, non-custodial. It automates your sales of digital goods or premium content. Bitcoin Paywall. 6 Version: 2.7 7 7 Author: BA.net 8 8 Author URI: https://ba.net/ … … 42 42 register_setting( 'bitcoin_paywall_options_group', 'bitcoin_paywall_option_name5', 'bitcoin_paywall_callback' ); 43 43 44 add_option( 'bitcoin_paywall_option_name6', '0X1aa814776f64ca11b12f02aa5ff2c1221a27bef6'); 45 register_setting( 'bitcoin_paywall_options_group', 'bitcoin_paywall_option_name6', 'bitcoin_paywall_callback' ); 44 46 45 47 } … … 68 70 <div> 69 71 <?php screen_icon(); ?> 70 <h2>Bitcoin Paywall</h2>72 <h2>Bitcoin Cash Paywall</h2> 71 73 <form method="post" action="options.php"> 72 74 <?php settings_fields( 'bitcoin_paywall_options_group' ); ?> … … 76 78 <p>Configure your payment buttons here. Then cut and paste the links or buttons on your wordpress pages, or external sites and social media. 77 79 <p> 78 Pro version can manage payment status and automatic product delivery. Also integrates with Paypal and Credit Cards.<a href="https://ba.net/bitcoin-pay-button/wordpress.html" target=_blank>Upgrade Here</a>80 Pro version can manage payment status and automatic product delivery. <a href="https://ba.net/bitcoin-pay-button/wordpress.html" target=_blank>Upgrade Here</a> 79 81 80 82 <p><br> … … 82 84 <tr valign="top"> 83 85 <th scope="row"><label for="bitcoin_paywall_option_name">BCH or BTC Address</label></th> 84 <td><input type="text" id="bitcoin_paywall_option_name" name="bitcoin_paywall_option_name" 85 size="35" 86 <td><input type="text" id="bitcoin_paywall_option_name" name="bitcoin_paywall_option_name" size="40" 86 87 value="<?php echo get_option('bitcoin_paywall_option_name'); ?>" /></td> 87 88 </tr> 88 89 89 90 <tr valign="top"> 91 <th scope="row"><label for="bitcoin_paywall_option_name6">ETH Address</label></th> 92 <td><input type="text" id="bitcoin_paywall_option_name6" name="bitcoin_paywall_option_name6" size="40" 93 value="<?php echo get_option('bitcoin_paywall_option_name6'); ?>" /></td> 94 </tr> 95 96 97 <tr valign="top"> 90 98 <th scope="row"><label for="bitcoin_paywall_option_name2">Sales Support Email</label></th> 91 <td><input type="text" id="bitcoin_paywall_option_name2" name="bitcoin_paywall_option_name2" 92 size="35" 99 <td><input type="text" id="bitcoin_paywall_option_name2" name="bitcoin_paywall_option_name2" size="40" 93 100 value="<?php echo get_option('bitcoin_paywall_option_name2'); ?>" /></td> 94 101 </tr> … … 102 109 <option value="btc" <?php if (get_option('bitcoin_paywall_option_name3')=="btc") echo "selected"; ?> > 103 110 BTC</option> 111 <option value="eth" <?php if (get_option('bitcoin_paywall_option_name3')=="eth") echo "selected"; ?> > 112 ETH</option> 113 <option value="paypal" <?php if (get_option('bitcoin_paywall_option_name3')=="paypal") echo "selected"; ?> > 114 PayPal</option> 115 <option value="paypal" <?php if (get_option('bitcoin_paywall_option_name3')=="paypal") echo "selected"; ?> > 116 CCs</option> 104 117 </select> 105 118 … … 143 156 $button = "https://ba.net/pay/button/btcpay.php?address=".get_option('bitcoin_paywall_option_name')."&supportemail=".get_option('bitcoin_paywall_option_name2')."&product=".get_option('bitcoin_paywall_option_name4')."&amount=".get_option('bitcoin_paywall_option_name5').""; 144 157 158 if (get_option('bitcoin_paywall_option_name3') == "eth") 159 $button = "https://ba.net/pay/button/ethpay.php?address=".get_option('bitcoin_paywall_option_name6')."&supportemail=".get_option('bitcoin_paywall_option_name2')."&product=".get_option('bitcoin_paywall_option_name4')."&amount=".get_option('bitcoin_paywall_option_name5').""; 160 161 if (get_option('bitcoin_paywall_option_name3') == "paypal") 162 $button = "https://ba.net/pay/button/paypal.php?address=".get_option('bitcoin_paywall_option_name')."&supportemail=".get_option('bitcoin_paywall_option_name2')."&product=".get_option('bitcoin_paywall_option_name4')."&amount=".get_option('bitcoin_paywall_option_name5').""; 163 145 164 echo "<center> 146 165 <a href=".$button." target=_blank>your customised pay link</a> -
bitcoin-paywall/trunk/readme.txt
r2251008 r2251087 1 === Bitcoin Cash Paywall ===1 === Bitcoin Cash ETH PayPal Credit Cards Paywall === 2 2 Contributors: bpaywall 3 3 Donate link: https://ba.net/bitcoin-pay-button … … 11 11 12 12 Easy to use automated paywall for premium content and digital goods downloads. 13 Automate your BTC and BCH payment buttons with real-time USD prices, QRcodes,14 email buy links, url pay links and button pay links.13 Automate your BTC, BCH, ETH, PayPal and Credit Cards payment buttons with real-time 14 USD prices, QRcodes, email buy links, url pay links and button pay links. 15 15 16 16 == Description == 17 17 18 18 19 Bitcoin Cash Paywall Wordpress Plugin19 Bitcoin Cash ETH, PayPal, Credit Cards Paywall Wordpress Plugin 20 20 https://ba.net/bitcoin-pay-button 21 21 22 It will allow you to create btc and bch payment links on the fly. Including23 real-time usd price and qrcode22 It will allow you to create BTC, BCH, ETH, Paypal and Credit Card payment links on the fly. 23 Including real-time usd price and qrcode 24 24 25 Pro version can also manage payment status and automatic product delivery. More crypto coins and PayPal Integrated button and QR maker. <a href="https://ba.net/bitcoin-pay-button/wordpress.html">Pro version details</a>. 25 Pro version can also manage payment status and automatic product delivery. 26 <a href="https://ba.net/bitcoin-pay-button/wordpress.html">Pro version details</a>. 26 27 27 28 <b>PRO Wordpress Plugin</b> -
bitcoin-paywall/trunk/wp-bitcoinpaywall.php
r2250427 r2251087 3 3 Plugin Name: Bitcoin Paywall 4 4 Plugin URI: https://ba.net/bitcoin-paywall 5 Description: This plugin implements a Paywall using BTC, BCH. It automates your sales of digital goods or premium content.6 Version: 2. 05 Description: This plugin allows you to accept BTC, BCH, ETH, PayPal, Credit Cards. Instant Pay Buttons. No registration, non-custodial. It automates your sales of digital goods or premium content. Bitcoin Paywall. 6 Version: 2.7 7 7 Author: BA.net 8 8 Author URI: https://ba.net/ … … 42 42 register_setting( 'bitcoin_paywall_options_group', 'bitcoin_paywall_option_name5', 'bitcoin_paywall_callback' ); 43 43 44 add_option( 'bitcoin_paywall_option_name6', '0X1aa814776f64ca11b12f02aa5ff2c1221a27bef6'); 45 register_setting( 'bitcoin_paywall_options_group', 'bitcoin_paywall_option_name6', 'bitcoin_paywall_callback' ); 44 46 45 47 } … … 68 70 <div> 69 71 <?php screen_icon(); ?> 70 <h2>Bitcoin Paywall</h2>72 <h2>Bitcoin Cash Paywall</h2> 71 73 <form method="post" action="options.php"> 72 74 <?php settings_fields( 'bitcoin_paywall_options_group' ); ?> … … 76 78 <p>Configure your payment buttons here. Then cut and paste the links or buttons on your wordpress pages, or external sites and social media. 77 79 <p> 78 Pro version can manage payment status and automatic product delivery. Also integrates with Paypal and Credit Cards.<a href="https://ba.net/bitcoin-pay-button/wordpress.html" target=_blank>Upgrade Here</a>80 Pro version can manage payment status and automatic product delivery. <a href="https://ba.net/bitcoin-pay-button/wordpress.html" target=_blank>Upgrade Here</a> 79 81 80 82 <p><br> … … 82 84 <tr valign="top"> 83 85 <th scope="row"><label for="bitcoin_paywall_option_name">BCH or BTC Address</label></th> 84 <td><input type="text" id="bitcoin_paywall_option_name" name="bitcoin_paywall_option_name" 85 size="35" 86 <td><input type="text" id="bitcoin_paywall_option_name" name="bitcoin_paywall_option_name" size="40" 86 87 value="<?php echo get_option('bitcoin_paywall_option_name'); ?>" /></td> 87 88 </tr> 88 89 89 90 <tr valign="top"> 91 <th scope="row"><label for="bitcoin_paywall_option_name6">ETH Address</label></th> 92 <td><input type="text" id="bitcoin_paywall_option_name6" name="bitcoin_paywall_option_name6" size="40" 93 value="<?php echo get_option('bitcoin_paywall_option_name6'); ?>" /></td> 94 </tr> 95 96 97 <tr valign="top"> 90 98 <th scope="row"><label for="bitcoin_paywall_option_name2">Sales Support Email</label></th> 91 <td><input type="text" id="bitcoin_paywall_option_name2" name="bitcoin_paywall_option_name2" 92 size="35" 99 <td><input type="text" id="bitcoin_paywall_option_name2" name="bitcoin_paywall_option_name2" size="40" 93 100 value="<?php echo get_option('bitcoin_paywall_option_name2'); ?>" /></td> 94 101 </tr> … … 102 109 <option value="btc" <?php if (get_option('bitcoin_paywall_option_name3')=="btc") echo "selected"; ?> > 103 110 BTC</option> 111 <option value="eth" <?php if (get_option('bitcoin_paywall_option_name3')=="eth") echo "selected"; ?> > 112 ETH</option> 113 <option value="paypal" <?php if (get_option('bitcoin_paywall_option_name3')=="paypal") echo "selected"; ?> > 114 PayPal</option> 115 <option value="paypal" <?php if (get_option('bitcoin_paywall_option_name3')=="paypal") echo "selected"; ?> > 116 CCs</option> 104 117 </select> 105 118 … … 143 156 $button = "https://ba.net/pay/button/btcpay.php?address=".get_option('bitcoin_paywall_option_name')."&supportemail=".get_option('bitcoin_paywall_option_name2')."&product=".get_option('bitcoin_paywall_option_name4')."&amount=".get_option('bitcoin_paywall_option_name5').""; 144 157 158 if (get_option('bitcoin_paywall_option_name3') == "eth") 159 $button = "https://ba.net/pay/button/ethpay.php?address=".get_option('bitcoin_paywall_option_name6')."&supportemail=".get_option('bitcoin_paywall_option_name2')."&product=".get_option('bitcoin_paywall_option_name4')."&amount=".get_option('bitcoin_paywall_option_name5').""; 160 161 if (get_option('bitcoin_paywall_option_name3') == "paypal") 162 $button = "https://ba.net/pay/button/paypal.php?address=".get_option('bitcoin_paywall_option_name')."&supportemail=".get_option('bitcoin_paywall_option_name2')."&product=".get_option('bitcoin_paywall_option_name4')."&amount=".get_option('bitcoin_paywall_option_name5').""; 163 145 164 echo "<center> 146 165 <a href=".$button." target=_blank>your customised pay link</a>
Note: See TracChangeset
for help on using the changeset viewer.