Skip to content

Commit

Permalink
1.2.25
Browse files Browse the repository at this point in the history
  • Loading branch information
Stiofan committed Dec 13, 2024
1 parent 4de1f54 commit 7247a39
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions admin/settings/class-formbuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@ public function uwp_form_builder( $default_tab = 'account' ) {
<?php }

$custom_fields = apply_filters( 'uwp_custom_fields_tabs', array( 'account', 'profile-tabs' ) );
$fields = $this->form_fields_custom( $form_type );
if ( in_array( $form_type, $custom_fields ) && $fields ) { ?>
if ( in_array( $form_type, $custom_fields ) ) { ?>
<h4 class="h6 text-muted"><?php esc_html_e( 'Custom Fields', 'userswp' ); ?></h4>
<div id="uwp-form-builder-tab-custom" class="uwp-tabs-panel">
<?php do_action( 'uwp_manage_available_fields_custom', $form_type ); ?>
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.ko-fi.com/stiofan
Tags: login form, registration, registration form, user profile, user registration, members, membership
Requires at least: 4.9
Tested up to: 6.7
Stable tag: 1.2.24
Stable tag: 1.2.25
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -146,6 +146,9 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver

== Changelog ==

= 1.2.25 - 2024-12-13 =
* Profile tabs form builder missing nonce field which meant no new fields could be added - FIXED

= 1.2.24 - 2024-12-12 =
* Added JS for better compatibility with AyeCode Connect Captcha - ADDED
* User type functionality moved to its own sub menu - CHANGED
Expand Down
4 changes: 2 additions & 2 deletions userswp.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: UsersWP
Plugin URI: https://userswp.io/
Description: The only lightweight user profile plugin for WordPress. UsersWP features front end user profile, users directory, a registration and a login form.
Version: 1.2.24
Version: 1.2.25
Author: AyeCode Ltd
Author URI: https://userswp.io
License: GPL-2.0+
Expand All @@ -24,7 +24,7 @@
}

if ( ! defined( 'USERSWP_VERSION' ) ) {
define( 'USERSWP_VERSION', '1.2.24' );
define( 'USERSWP_VERSION', '1.2.25' );
}

if ( ! defined( 'USERSWP_PATH' ) ) {
Expand Down

0 comments on commit 7247a39

Please sign in to comment.