Changeset 1453043
- Timestamp:
- 07/12/2016 12:41:48 AM (10 years ago)
- Location:
- pushpress-integration
- Files:
-
- 3 edited
- 5 copied
-
tags/1.5.2 (copied) (copied from pushpress-integration/trunk)
-
tags/1.5.2/js_admin/pushpress.js (copied) (copied from pushpress-integration/trunk/js_admin/pushpress.js)
-
tags/1.5.2/pushpress.php (copied) (copied from pushpress-integration/trunk/pushpress.php) (5 diffs)
-
tags/1.5.2/readme.txt (copied) (copied from pushpress-integration/trunk/readme.txt) (1 diff)
-
tags/1.5.2/templates/frontend/shortcode_leads.php (copied) (copied from pushpress-integration/trunk/templates/frontend/shortcode_leads.php) (3 diffs)
-
trunk/pushpress.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/templates/frontend/shortcode_leads.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pushpress-integration/tags/1.5.2/pushpress.php
r1404915 r1453043 2 2 /** 3 3 * @package WP-PushPress 4 * @version 1.5. 14 * @version 1.5.2 5 5 */ 6 6 /* … … 9 9 Description: Easily integrate your workouts, calendar, products, membership plans, events and more with your Wordpress blog! This plugin is a free add-on for existing PushPress clients. See https://pushpress.com for more info. 10 10 Author: PushPress, Inc 11 Version: 1.5. 111 Version: 1.5.2 12 12 Author URI: https://pushpress.com 13 13 */ 14 14 define('PUSHPRESS_DEV', FALSE); 15 define( 'PP_PLUGIN_VERSION', '1.5. 1');15 define( 'PP_PLUGIN_VERSION', '1.5.2'); 16 16 define( 'PUSHPRESS_ERROR_REPORT', 0 ); 17 17 define( 'PUSHPRESS_BUTTON_CLASS', 'pushpress-button-class-' . rand(0, 10000)); … … 400 400 $params['lead_message'] = $form['lead_message']; 401 401 $params['objective'] = $form['objective']; 402 $params['lead_source'] = "Wordpress Plugin"; 402 403 $params['referred_by_id'] = $form['referred_by_id']; 403 404 $params['referred_by_user_id'] = $form['referred_by_user_id']; … … 440 441 Wp_Pushpress_Messages::$leadSubmitSuccess = true; 441 442 443 $_POST['form_submitted'] = true; 444 442 445 443 446 }catch (Exception $e){ … … 461 464 exit; 462 465 } 466 463 467 } 464 468 -
pushpress-integration/tags/1.5.2/readme.txt
r1404915 r1453043 96 96 = 1.5.1 = 97 97 Fixed bug on lead form: Was showing lead types when toggled to off. 98 99 = 1.5.2 = 100 Removed the lead form after submitting. 101 Added proper source tracking to lead form. (now shows as Wordpress Plugin as the lead source) -
pushpress-integration/tags/1.5.2/templates/frontend/shortcode_leads.php
r1404915 r1453043 7 7 } 8 8 </style> 9 10 9 11 <div class="wp-pushpress"> 10 12 <ul class="wp-pushpress-list"> … … 17 19 <p class="lead-text"><?php echo $leads['lead_page_description'];?></p> 18 20 <?php Wp_Pushpress_Messages::get_messages();?> 21 22 <?php if (!isset($_POST['form_submitted'])) { ?> 19 23 <form id="subscribe-form" class="form" action="" method="post"> 20 24 <div class="btn-group"> … … 183 187 </div> 184 188 </form> 189 <?php } ?> 185 190 </li> 186 191 </ul> -
pushpress-integration/trunk/pushpress.php
r1404915 r1453043 2 2 /** 3 3 * @package WP-PushPress 4 * @version 1.5. 14 * @version 1.5.2 5 5 */ 6 6 /* … … 9 9 Description: Easily integrate your workouts, calendar, products, membership plans, events and more with your Wordpress blog! This plugin is a free add-on for existing PushPress clients. See https://pushpress.com for more info. 10 10 Author: PushPress, Inc 11 Version: 1.5. 111 Version: 1.5.2 12 12 Author URI: https://pushpress.com 13 13 */ 14 14 define('PUSHPRESS_DEV', FALSE); 15 define( 'PP_PLUGIN_VERSION', '1.5. 1');15 define( 'PP_PLUGIN_VERSION', '1.5.2'); 16 16 define( 'PUSHPRESS_ERROR_REPORT', 0 ); 17 17 define( 'PUSHPRESS_BUTTON_CLASS', 'pushpress-button-class-' . rand(0, 10000)); … … 400 400 $params['lead_message'] = $form['lead_message']; 401 401 $params['objective'] = $form['objective']; 402 $params['lead_source'] = "Wordpress Plugin"; 402 403 $params['referred_by_id'] = $form['referred_by_id']; 403 404 $params['referred_by_user_id'] = $form['referred_by_user_id']; … … 440 441 Wp_Pushpress_Messages::$leadSubmitSuccess = true; 441 442 443 $_POST['form_submitted'] = true; 444 442 445 443 446 }catch (Exception $e){ … … 461 464 exit; 462 465 } 466 463 467 } 464 468 -
pushpress-integration/trunk/readme.txt
r1404915 r1453043 96 96 = 1.5.1 = 97 97 Fixed bug on lead form: Was showing lead types when toggled to off. 98 99 = 1.5.2 = 100 Removed the lead form after submitting. 101 Added proper source tracking to lead form. (now shows as Wordpress Plugin as the lead source) -
pushpress-integration/trunk/templates/frontend/shortcode_leads.php
r1404915 r1453043 7 7 } 8 8 </style> 9 10 9 11 <div class="wp-pushpress"> 10 12 <ul class="wp-pushpress-list"> … … 17 19 <p class="lead-text"><?php echo $leads['lead_page_description'];?></p> 18 20 <?php Wp_Pushpress_Messages::get_messages();?> 21 22 <?php if (!isset($_POST['form_submitted'])) { ?> 19 23 <form id="subscribe-form" class="form" action="" method="post"> 20 24 <div class="btn-group"> … … 183 187 </div> 184 188 </form> 189 <?php } ?> 185 190 </li> 186 191 </ul>
Note: See TracChangeset
for help on using the changeset viewer.