Plugin Directory

Changeset 1994175


Ignore:
Timestamp:
12/13/2018 10:51:29 PM (7 years ago)
Author:
hive4apps
Message:

bugs fix inside settings

Location:
wp-group-subscriptions/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wp-group-subscriptions/trunk/WPGroupSubs.php

    r1993700 r1994175  
    44Plugin URI: https://wp-group-subscriptions.com
    55Description: Accepts paying group registrations. Gives access to restricted content for members or groups of members.
    6 Version: 0.1.3
     6Version: 0.1.4
    77Author: Hive 4 Apps
    88Author URI: http://www.hive-4-apps.org/
  • wp-group-subscriptions/trunk/admin/headings/settings/js/settings.js

    r1993138 r1994175  
    88       
    99        var tab = h4aAdmin.getUrlParameter( "tab" );
    10         console.dir( wgsSettingTranslation );
    1110        if( !isStrNullUndefinedEmpty( tab ) ){
    1211            if( $( "#" + wgsSettingTranslation.tabs[tab] + "-menu" ).length ){
  • wp-group-subscriptions/trunk/config/config.ini

    r1993700 r1994175  
    22title=WP Group Subscriptions
    33domain=wp-group-subscriptions
    4 version=0.1.3
     4version=0.1.4
    55initials=WGS
    66prefix=wgs_
  • wp-group-subscriptions/trunk/core/front-end/features/form/FrontEndForm.php

    r1993138 r1994175  
    8686        if ( is_plugin_active( 'wgs-recaptcha-addon/WGSRecaptchaAddon.php' ) ) {
    8787            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 );
    8989            }
    9090        }
  • wp-group-subscriptions/trunk/front-end/shortcodes/plan-forms/PlanFormsShortcode.php

    r1993138 r1994175  
    226226                $form->action                         = FormPages::buildUrlAction( $post_title, 1 );
    227227                $form->options['step']                = $_GET['step'];
    228                 $form->options['submitBox']          = array( 'button' => "Subscription" );
     228                $form->options['submitBox']           = array( 'button' => "Subscription" );
    229229                $form->options['recaptcha']           = true;
    230230                $form->options['has_required_fields'] = true;
  • wp-group-subscriptions/trunk/readme.txt

    r1993700 r1994175  
    55Tested up to: 4.9.6
    66Requires PHP: 7.0.29
    7 Stable tag: 0.1.3
     7Stable tag: 0.1.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585== Changelog ==
    8686
     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
    8794= 0.1.2 =
    8895* Small fix in readme.txt
Note: See TracChangeset for help on using the changeset viewer.