Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified languages/userswp-en_US.mo
Binary file not shown.
6 changes: 3 additions & 3 deletions languages/userswp-en_US.po
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
msgid ""
msgstr ""
"Project-Id-Version: UsersWP 1.2.46\n"
"Project-Id-Version: UsersWP 1.2.47\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-30 20:24+0530\n"
"PO-Revision-Date: 2025-10-30 20:27+0530\n"
"POT-Creation-Date: 2025-10-31 11:19+0530\n"
"PO-Revision-Date: 2025-10-31 11:19+0530\n"
"Last-Translator: \n"
"Language-Team: AyeCode Ltd <contact@ayecode.io>\n"
"Language: en_US\n"
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: 5.0
Tested up to: 6.8
Stable tag: 1.2.46
Stable tag: 1.2.47
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

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

== Changelog ==

= 1.2.47 - 2025-10-31 =
* Merge SD 1.2.29 - CHANGED

= 1.2.46 - 2025-10-30 =
* Users list page search and sorting functionality - FIXED
* Dynamic tax field labels for GetPaid integration - ADDED
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.46
Version: 1.2.47
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.46' );
define( 'USERSWP_VERSION', '1.2.47' );
}

if ( ! defined( 'USERSWP_PATH' ) ) {
Expand Down
3 changes: 3 additions & 0 deletions vendor/ayecode/wp-super-duper/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
= 1.2.29 - 2025-10-31 =
* Shows error when GeoDirectory is not active - FIXED

= 1.2.28 - 2025-10-30 =
* Add Block Visibility support for non FSE themes - ADDED
* Detect Breakdance builder preview - ADDED
Expand Down
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-super-duper/sd-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @wordpress-plugin
* Plugin Name: Super Duper - Examples
* Description: This is a Hello World test plugin for WP Super Duper Class.
* Version: 1.2.28
* Version: 1.2.29
* Author: AyeCode
* Author URI: https://ayecode.io
* Text Domain: super-duper
Expand Down
20 changes: 18 additions & 2 deletions vendor/ayecode/wp-super-duper/wp-super-duper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

if ( ! class_exists( 'WP_Super_Duper' ) ) {

define( 'SUPER_DUPER_VER', '1.2.28' );
define( 'SUPER_DUPER_VER', '1.2.29' );

/**
* A Class to be able to create a Widget, Shortcode or Block to be able to output content for WordPress.
Expand Down Expand Up @@ -5492,11 +5492,27 @@ public function is_gutenberg() {

if ( class_exists( 'Classic_Editor' ) ) {
$is_gutenberg = false; // Classic Editor plugin is active.
} else if ( geodir_is_classicpress() ) {
} else if ( $this->is_classicpress() ) {
$is_gutenberg = false; // Site is using ClassicPress.
}

return $is_gutenberg;
}

/**
* Check if ClassicPress is in use.
*
* @since 1.2.29
* @return bool True if site uses ClassicPress else False.
*/
public function is_classicpress() {
if ( function_exists( 'classicpress_version' ) ) {
$is_classicpress = true;
} else {
$is_classicpress = false;
}

return $is_classicpress;
}
}
}
14 changes: 7 additions & 7 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,24 +206,24 @@
},
{
"name": "ayecode/wp-super-duper",
"version": "1.2.28",
"version_normalized": "1.2.28.0",
"version": "1.2.29",
"version_normalized": "1.2.29.0",
"source": {
"type": "git",
"url": "https://github.com/AyeCode/wp-super-duper.git",
"reference": "6a23bbc347fa8c0c475ff56041a7eb887a4b4510"
"reference": "1f40eee644665f760475d0fb8c727301007e0e93"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/6a23bbc347fa8c0c475ff56041a7eb887a4b4510",
"reference": "6a23bbc347fa8c0c475ff56041a7eb887a4b4510",
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/1f40eee644665f760475d0fb8c727301007e0e93",
"reference": "1f40eee644665f760475d0fb8c727301007e0e93",
"shasum": ""
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.4.0"
},
"time": "2025-10-30T12:20:21+00:00",
"time": "2025-10-31T05:45:44+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -255,7 +255,7 @@
],
"support": {
"issues": "https://github.com/AyeCode/wp-super-duper/issues",
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.28"
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.29"
},
"install-path": "../ayecode/wp-super-duper"
},
Expand Down
10 changes: 5 additions & 5 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'uswerwp/userswp',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '51ab99e7f3a59a771eb1d1682dd8ed178cd96f2e',
'reference' => 'd13ebfa8745b6ed3d47b0aecbd0a5c714e7cfe8f',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -47,9 +47,9 @@
'dev_requirement' => false,
),
'ayecode/wp-super-duper' => array(
'pretty_version' => '1.2.28',
'version' => '1.2.28.0',
'reference' => '6a23bbc347fa8c0c475ff56041a7eb887a4b4510',
'pretty_version' => '1.2.29',
'version' => '1.2.29.0',
'reference' => '1f40eee644665f760475d0fb8c727301007e0e93',
'type' => 'library',
'install_path' => __DIR__ . '/../ayecode/wp-super-duper',
'aliases' => array(),
Expand Down Expand Up @@ -79,7 +79,7 @@
'uswerwp/userswp' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '51ab99e7f3a59a771eb1d1682dd8ed178cd96f2e',
'reference' => 'd13ebfa8745b6ed3d47b0aecbd0a5c714e7cfe8f',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down