Plugin Directory

Changeset 3106866


Ignore:
Timestamp:
06/24/2024 08:31:42 PM (22 months ago)
Author:
NicolasKulka
Message:
  • Fix Fatal Error with BuddyBoss
Location:
wps-hide-login
Files:
41 added
3 edited

Legend:

Unmodified
Added
Removed
  • wps-hide-login/trunk/classes/plugin.php

    r3105541 r3106866  
    694694
    695695        if ( ! is_user_logged_in() ) {
    696             if ( (  is_plugin_active( 'gravityforms/gravityforms.php' ) || ( is_multisite() && is_plugin_active_for_network( 'gravityforms/gravityforms.php' ) ) ) && isset( $_GET['gf_page'] ) ) {
    697                 return $origin_url;
     696            $theme = wp_get_theme();
     697            if (  'BuddyBoss Theme' !== $theme->name ) {
     698                if ( is_plugin_active( 'gravityforms/gravityforms.php' ) && isset( $_GET['gf_page'] ) ) {
     699                    return $origin_url;
     700                }
    698701            }
    699702        }
  • wps-hide-login/trunk/readme.txt

    r3105541 r3106866  
    77Tested up to: 6.5
    88Requires PHP: 7.0
    9 Stable tag: 1.9.16.4
     9Stable tag: 1.9.16.5
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140
    141141== Changelog ==
     142
     143= 1.9.16.5 =
     144* Fix Fatal Error with BuddyBoss
    142145
    143146= 1.9.16.4 =
  • wps-hide-login/trunk/wps-hide-login.php

    r3105541 r3106866  
    66Author: WPServeur, NicolasKulka, wpformation
    77Author URI: https://wpserveur.net
    8 Version: 1.9.16.4
     8Version: 1.9.16.5
    99Requires at least: 4.1
    1010Tested up to: 6.5
     
    2222
    2323// Plugin constants
    24 define( 'WPS_HIDE_LOGIN_VERSION', '1.9.16.4' );
     24define( 'WPS_HIDE_LOGIN_VERSION', '1.9.16.5' );
    2525define( 'WPS_HIDE_LOGIN_FOLDER', 'wps-hide-login' );
    2626
Note: See TracChangeset for help on using the changeset viewer.