Changeset 1994175
- Timestamp:
- 12/13/2018 10:51:29 PM (7 years ago)
- Location:
- wp-group-subscriptions/trunk
- Files:
-
- 6 edited
-
WPGroupSubs.php (modified) (1 diff)
-
admin/headings/settings/js/settings.js (modified) (1 diff)
-
config/config.ini (modified) (1 diff)
-
core/front-end/features/form/FrontEndForm.php (modified) (1 diff)
-
front-end/shortcodes/plan-forms/PlanFormsShortcode.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-group-subscriptions/trunk/WPGroupSubs.php
r1993700 r1994175 4 4 Plugin URI: https://wp-group-subscriptions.com 5 5 Description: Accepts paying group registrations. Gives access to restricted content for members or groups of members. 6 Version: 0.1. 36 Version: 0.1.4 7 7 Author: Hive 4 Apps 8 8 Author URI: http://www.hive-4-apps.org/ -
wp-group-subscriptions/trunk/admin/headings/settings/js/settings.js
r1993138 r1994175 8 8 9 9 var tab = h4aAdmin.getUrlParameter( "tab" ); 10 console.dir( wgsSettingTranslation );11 10 if( !isStrNullUndefinedEmpty( tab ) ){ 12 11 if( $( "#" + wgsSettingTranslation.tabs[tab] + "-menu" ).length ){ -
wp-group-subscriptions/trunk/config/config.ini
r1993700 r1994175 2 2 title=WP Group Subscriptions 3 3 domain=wp-group-subscriptions 4 version=0.1. 34 version=0.1.4 5 5 initials=WGS 6 6 prefix=wgs_ -
wp-group-subscriptions/trunk/core/front-end/features/form/FrontEndForm.php
r1993138 r1994175 86 86 if ( is_plugin_active( 'wgs-recaptcha-addon/WGSRecaptchaAddon.php' ) ) { 87 87 if( isset ( $this->options['recaptcha'] ) && $this->options['recaptcha'] ){ 88 $html .= apply_filters("set_client_side_recaptcha" );88 $html .= apply_filters("set_client_side_recaptcha", $html ); 89 89 } 90 90 } -
wp-group-subscriptions/trunk/front-end/shortcodes/plan-forms/PlanFormsShortcode.php
r1993138 r1994175 226 226 $form->action = FormPages::buildUrlAction( $post_title, 1 ); 227 227 $form->options['step'] = $_GET['step']; 228 $form->options['submitBox'] = array( 'button' => "Subscription" );228 $form->options['submitBox'] = array( 'button' => "Subscription" ); 229 229 $form->options['recaptcha'] = true; 230 230 $form->options['has_required_fields'] = true; -
wp-group-subscriptions/trunk/readme.txt
r1993700 r1994175 5 5 Tested up to: 4.9.6 6 6 Requires PHP: 7.0.29 7 Stable tag: 0.1. 37 Stable tag: 0.1.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 85 85 == Changelog == 86 86 87 = 0.1.4 = 88 * BUG FIX: Repaired filter for forms working with the recaptcha addon 89 * BUG FIX: Remove the modal object display in settings.js inside the browser console 90 91 = 0.1.3 = 92 * Long description in readme.txt 93 87 94 = 0.1.2 = 88 95 * Small fix in readme.txt
Note: See TracChangeset
for help on using the changeset viewer.