Changeset 3232736
- Timestamp:
- 01/31/2025 02:49:01 PM (14 months ago)
- Location:
- wp-payment/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (6 diffs)
-
wp-payment.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-payment/trunk/readme.txt
r3193269 r3232736 1 1 === WP Payment === 2 Contributors: WPSuperiors , amitwpdeveloper2 Contributors: WPSuperiors 3 3 Donate link: http://www.wpsuperiors.com/donate/ 4 4 Tags: paypal onsite payment, paypal pro, Stripe payment, credit card payment, recurring billing, recurring donation, authorize.net, recurring, paypal 5 5 Requires at least: 3.0.1 6 Tested up to: 6.7 6 Tested up to: 6.7.1 7 7 Stable tag: 6.4.2 8 8 Get recurring and onetime payments with PayPal, Authorize.NET and Stripe. … … 26 26 - API Key retrival tutorial at admin screen. 27 27 28 = Premium Version Features =28 = Premium Version Features (@ 19 USD) = 29 29 - Available widget for Elementor Page Builder and Gutenberg block. 30 30 - Shortcode *[WP_PAYMENT_FORM]* place any pages/posts to display form. … … 58 58 59 59 Do you need Recurring Donation? OR Recurring Payments? 60 Go for premium version [WP Payment Premium ](https://www.wpsuperiors.com/wp-payment-details/)60 Go for premium version [WP Payment Premium @ 19 USD](https://www.wpsuperiors.com/wp-payment-details/) 61 61 62 62 In our Premium you can also customize the settings for recurring. Like Monthly, Yearly, Daily etc. … … 73 73 = Is Recurring Donation supported bythis plugins ? = 74 74 75 Yes, its supported, but it is only available in premium version. [WP Payment Premium ](https://www.wpsuperiors.com/shop/wp-payment/)75 Yes, its supported, but it is only available in premium version. [WP Payment Premium @ 19 USD](https://www.wpsuperiors.com/shop/wp-payment/) 76 76 77 77 = Need CSS Changes ? = … … 81 81 = Where I Can Buy Premium Version ? = 82 82 83 Go here, [WP Payment Premium ](https://www.wpsuperiors.com/shop/wp-payment/)83 Go here, [WP Payment Premium @ 19 USD](https://www.wpsuperiors.com/shop/wp-payment/) 84 84 85 85 = What is addiitonal features for Premium Version ? = … … 128 128 129 129 == changelog == 130 = 2.3.0 - 31st Jan, 2025 = 131 *WordPress 6.7.1 compatibility update. * 132 130 133 = 2.2.9 - 20th Nov, 2024 = 131 134 *WordPress 6.7 compatibility update. * -
wp-payment/trunk/wp-payment.php
r3193269 r3232736 4 4 Plugin URI: https://www.wpsuperiors.com/wp-payment-details/ 5 5 Description: On site payments through Authorize.NET, PayPal Pro and Stripe with Email Notification. Use shortcode '[WP_PAYMENT_FORM]'. 6 Version: 2. 2.96 Version: 2.3.0 7 7 Author: WPSuperiors 8 8 Author URI: https://www.wpsuperiors.com … … 262 262 $plugin_links = array( 263 263 '<a href="' . admin_url( 'admin.php?page=payment' ) . '">' . __( 'Payment Gateway') . '</a>', 264 '<a href="https://www.wpsuperiors.com/wp-payment-details/">' . __( 'Premium ') . '</a>',264 '<a href="https://www.wpsuperiors.com/wp-payment-details/">' . __( 'Premium @ 19 USD') . '</a>', 265 265 '<a href="https://www.wpsuperiors.com/wp-payment-layouts/">' . __( 'Layouts') . '</a>', 266 266 '<a href="https://www.wpsuperiors.com/wp-payment/">' . __( 'Documentation') . '</a>', … … 268 268 return array_merge( $plugin_links, $links ); 269 269 } 270 271 272 add_action( 'admin_notices', 'show_premium_buy_notice_wp_payment' ); 273 add_action( 'admin_init', 'show_premium_buy_notice_dismissed_wp_payment' ); 274 275 function show_premium_buy_notice_wp_payment() { 276 $user_id = get_current_user_id(); 277 if ( !get_user_meta( $user_id, 'wps_premium_buy_notice_wp_payment' ) ){ 278 echo '<div class="notice notice-success is-dismissible" style="display:flex;"> 279 <img src="https://wpsuperiors-media.s3.amazonaws.com/wp-content/uploads/2025/01/30163651/limited.png" /> 280 <span style="padding-top:4%; font-size:20px;">Don\'t miss the deal, WP Payment PREMIUM plugin at <b style="font-weight:700;">19 USD</b> only. 281 <a class="button button-primary" href="?wps-dismissed3" style="margin-top:-5px;">Click To Grab</a></span> 282 </div>'; 283 } 284 } 285 286 function show_premium_buy_notice_dismissed_wp_payment() { 287 $user_id = get_current_user_id(); 288 if ( isset( $_GET['wps-dismissed3'] ) ){ 289 add_user_meta( $user_id, 'wps_premium_buy_notice_wp_payment', 'true', true ); 290 wp_redirect( "https://www.wpsuperiors.com/wp-payment-details/", 301 ); 291 exit(); 292 } 293 }
Note: See TracChangeset
for help on using the changeset viewer.