Skip to content

Commit 0918fcc

Browse files
committed
Prepare version 1.3.3
- fixed compatibility with the "User Bookmarks" extension.
1 parent 211afec commit 0918fcc

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Once the plugin is cloned, enter your site admin dashboard and go to _wp-admin >
2424

2525
### How to install from ZIP archive
2626

27-
You can install the plugin from this [ZIP file](https://drive.google.com/file/d/1cpckDSV37yKcyyw-bFR8Sjbt0Fdz6Ak1/view) as any other plugin. Follow [this instruction](https://wordpress.org/support/article/managing-plugins/#upload-via-wordpress-admin).
27+
You can install the plugin from this [ZIP file](https://drive.google.com/file/d/1R4eahaQi-NBRDb7ZEowHrpN6_5yudI56/view) as any other plugin. Follow [this instruction](https://wordpress.org/support/article/managing-plugins/#upload-via-wordpress-admin).
2828

2929
## How to use
3030

@@ -131,13 +131,13 @@ It is recommended to enable SQL queries optimization to get posts and members fa
131131
This is a free extension created for the community. The Ultimate Member team does not provide support for this extension.
132132
Open new [issue](https://github.com/umdevelopera/um-optimize/issues) if you are facing a problem or have a suggestion.
133133

134-
**Please give a star if you think this extension is useful. I wish to know how many people use it. Thanks.**
134+
**Give a star if you think this extension is useful. Thanks.**
135135

136136
## Useful links
137137

138138
[Ultimate Member core plugin info and download](https://wordpress.org/plugins/ultimate-member)
139139

140-
[Ultimate Member documentation](https://docs.ultimatemember.com)
140+
[Documentation for Ultimate Member](https://docs.ultimatemember.com)
141141

142142
[Official extensions for Ultimate Member](https://ultimatemember.com/extensions/)
143143

includes/frontend/class-assets.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
*/
1818
class Assets {
1919

20+
const NOT_DEQUEUE = array(
21+
'um_notifications',
22+
'um-user-bookmarks',
23+
);
24+
2025
/**
2126
* Files extension. Accepts 'css', 'js'.
2227
*
@@ -191,9 +196,7 @@ public function dequeue_assets( $ext ) {
191196
return false;
192197
}
193198

194-
$not_dequeue_def = array(
195-
'um_notifications',
196-
);
199+
$not_dequeue_def = self::NOT_DEQUEUE;
197200

198201
/**
199202
* Hook: um_optimize_not_dequeue

readme.txt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ License: GNU Version 2 or Any Later Version
88
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
99

1010
Requires at least: 6.5
11-
Tested up to: 6.7.1
11+
Tested up to: 6.7.2
1212
Requires UM core at least: 2.6.8
13-
Tested UM core up to: 2.9.2
14-
Stable tag: 1.3.2
13+
Tested UM core up to: 2.10.0
14+
Stable tag: 1.3.3
1515

1616
== Description ==
1717

@@ -40,6 +40,10 @@ Download ZIP file from Google Drive. You can find download links here: https://g
4040

4141
== Changelog ==
4242

43+
= 1.3.3: February 20, 2025 =
44+
45+
- Fixed: Bookmark button style and script.
46+
4347
= 1.3.2: January 22, 2025 =
4448

4549
- Improved SQL queries optimizer - added support for the array meta key and empty meta key.

um-optimize.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
* Requires Plugins: ultimate-member
1212
* Requires at least: 6.5
1313
* Requires PHP: 7.4
14-
* UM version: 2.9.2
15-
* Version: 1.3.2
14+
* UM version: 2.10.0
15+
* Version: 1.3.3
1616
*
1717
* @package um_ext\um_optimize
1818
*/

0 commit comments

Comments
 (0)