Skip to content

Commit 6c103c9

Browse files
authored
Merge pull request #862 from kprajapatii/master
1.2.47
2 parents 2057c94 + f6175a7 commit 6c103c9

9 files changed

Lines changed: 43 additions & 21 deletions

File tree

languages/userswp-en_US.mo

0 Bytes
Binary file not shown.

languages/userswp-en_US.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
msgid ""
22
msgstr ""
3-
"Project-Id-Version: UsersWP 1.2.46\n"
3+
"Project-Id-Version: UsersWP 1.2.47\n"
44
"Report-Msgid-Bugs-To: \n"
5-
"POT-Creation-Date: 2025-10-30 20:24+0530\n"
6-
"PO-Revision-Date: 2025-10-30 20:27+0530\n"
5+
"POT-Creation-Date: 2025-10-31 11:19+0530\n"
6+
"PO-Revision-Date: 2025-10-31 11:19+0530\n"
77
"Last-Translator: \n"
88
"Language-Team: AyeCode Ltd <contact@ayecode.io>\n"
99
"Language: en_US\n"

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.ko-fi.com/stiofan
44
Tags: login form, registration, registration form, user profile, user registration, members, membership
55
Requires at least: 5.0
66
Tested up to: 6.8
7-
Stable tag: 1.2.46
7+
Stable tag: 1.2.47
88
License: GPLv3
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

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

151151
== Changelog ==
152152

153+
= 1.2.47 - 2025-10-31 =
154+
* Merge SD 1.2.29 - CHANGED
155+
153156
= 1.2.46 - 2025-10-30 =
154157
* Users list page search and sorting functionality - FIXED
155158
* Dynamic tax field labels for GetPaid integration - ADDED

userswp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: UsersWP
44
Plugin URI: https://userswp.io/
55
Description: The only lightweight user profile plugin for WordPress. UsersWP features front end user profile, users directory, a registration and a login form.
6-
Version: 1.2.46
6+
Version: 1.2.47
77
Author: AyeCode Ltd
88
Author URI: https://userswp.io
99
License: GPL-2.0+
@@ -24,7 +24,7 @@
2424
}
2525

2626
if ( ! defined( 'USERSWP_VERSION' ) ) {
27-
define( 'USERSWP_VERSION', '1.2.46' );
27+
define( 'USERSWP_VERSION', '1.2.47' );
2828
}
2929

3030
if ( ! defined( 'USERSWP_PATH' ) ) {

vendor/ayecode/wp-super-duper/change-log.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
= 1.2.29 - 2025-10-31 =
2+
* Shows error when GeoDirectory is not active - FIXED
3+
14
= 1.2.28 - 2025-10-30 =
25
* Add Block Visibility support for non FSE themes - ADDED
36
* Detect Breakdance builder preview - ADDED

vendor/ayecode/wp-super-duper/sd-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @wordpress-plugin
66
* Plugin Name: Super Duper - Examples
77
* Description: This is a Hello World test plugin for WP Super Duper Class.
8-
* Version: 1.2.28
8+
* Version: 1.2.29
99
* Author: AyeCode
1010
* Author URI: https://ayecode.io
1111
* Text Domain: super-duper

vendor/ayecode/wp-super-duper/wp-super-duper.php

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
if ( ! class_exists( 'WP_Super_Duper' ) ) {
77

8-
define( 'SUPER_DUPER_VER', '1.2.28' );
8+
define( 'SUPER_DUPER_VER', '1.2.29' );
99

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

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

54995499
return $is_gutenberg;
55005500
}
5501+
5502+
/**
5503+
* Check if ClassicPress is in use.
5504+
*
5505+
* @since 1.2.29
5506+
* @return bool True if site uses ClassicPress else False.
5507+
*/
5508+
public function is_classicpress() {
5509+
if ( function_exists( 'classicpress_version' ) ) {
5510+
$is_classicpress = true;
5511+
} else {
5512+
$is_classicpress = false;
5513+
}
5514+
5515+
return $is_classicpress;
5516+
}
55015517
}
55025518
}

vendor/composer/installed.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -206,24 +206,24 @@
206206
},
207207
{
208208
"name": "ayecode/wp-super-duper",
209-
"version": "1.2.28",
210-
"version_normalized": "1.2.28.0",
209+
"version": "1.2.29",
210+
"version_normalized": "1.2.29.0",
211211
"source": {
212212
"type": "git",
213213
"url": "https://github.com/AyeCode/wp-super-duper.git",
214-
"reference": "6a23bbc347fa8c0c475ff56041a7eb887a4b4510"
214+
"reference": "1f40eee644665f760475d0fb8c727301007e0e93"
215215
},
216216
"dist": {
217217
"type": "zip",
218-
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/6a23bbc347fa8c0c475ff56041a7eb887a4b4510",
219-
"reference": "6a23bbc347fa8c0c475ff56041a7eb887a4b4510",
218+
"url": "https://api.github.com/repos/AyeCode/wp-super-duper/zipball/1f40eee644665f760475d0fb8c727301007e0e93",
219+
"reference": "1f40eee644665f760475d0fb8c727301007e0e93",
220220
"shasum": ""
221221
},
222222
"require": {
223223
"composer/installers": "~1.0",
224224
"php": ">=5.4.0"
225225
},
226-
"time": "2025-10-30T12:20:21+00:00",
226+
"time": "2025-10-31T05:45:44+00:00",
227227
"type": "library",
228228
"installation-source": "dist",
229229
"autoload": {
@@ -255,7 +255,7 @@
255255
],
256256
"support": {
257257
"issues": "https://github.com/AyeCode/wp-super-duper/issues",
258-
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.28"
258+
"source": "https://github.com/AyeCode/wp-super-duper/tree/1.2.29"
259259
},
260260
"install-path": "../ayecode/wp-super-duper"
261261
},

vendor/composer/installed.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => 'uswerwp/userswp',
44
'pretty_version' => 'dev-master',
55
'version' => 'dev-master',
6-
'reference' => '51ab99e7f3a59a771eb1d1682dd8ed178cd96f2e',
6+
'reference' => 'd13ebfa8745b6ed3d47b0aecbd0a5c714e7cfe8f',
77
'type' => 'project',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -47,9 +47,9 @@
4747
'dev_requirement' => false,
4848
),
4949
'ayecode/wp-super-duper' => array(
50-
'pretty_version' => '1.2.28',
51-
'version' => '1.2.28.0',
52-
'reference' => '6a23bbc347fa8c0c475ff56041a7eb887a4b4510',
50+
'pretty_version' => '1.2.29',
51+
'version' => '1.2.29.0',
52+
'reference' => '1f40eee644665f760475d0fb8c727301007e0e93',
5353
'type' => 'library',
5454
'install_path' => __DIR__ . '/../ayecode/wp-super-duper',
5555
'aliases' => array(),
@@ -79,7 +79,7 @@
7979
'uswerwp/userswp' => array(
8080
'pretty_version' => 'dev-master',
8181
'version' => 'dev-master',
82-
'reference' => '51ab99e7f3a59a771eb1d1682dd8ed178cd96f2e',
82+
'reference' => 'd13ebfa8745b6ed3d47b0aecbd0a5c714e7cfe8f',
8383
'type' => 'project',
8484
'install_path' => __DIR__ . '/../../',
8585
'aliases' => array(),

0 commit comments

Comments
 (0)