Skip to content

Commit 97493e2

Browse files
committed
Prepare version 1.3.4
- fixed optimization features on the login screen. - minor style changes
1 parent 6501e8d commit 97493e2

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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/1R4eahaQi-NBRDb7ZEowHrpN6_5yudI56/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/1_447i9fz8J7dtx8rKdskLGb6MhJYoMme/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

assets/css/um-optimize-color.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ div.um-account .um-account-side li a:hover span.um-account-arrow {
418418
*/
419419

420420
/* header */
421-
div.um-directory .um-member-directory-search-line {
421+
div.um-directory .um-member-directory-search-line,
422+
div.um-directory .um-member-directory-map-controls-half {
422423
flex-grow: 1;
423424
}
424425
div.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type a.um-member-directory-view-type-a.um-tip-n[data-type] {

assets/css/um-optimize-color.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

includes/class-um-optimize.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ static public function instance() {
3939
*/
4040
public function __construct() {
4141

42-
if( UM()->is_ajax() ) {
42+
if ( UM()->is_ajax() ) {
4343
$this->ajax();
4444
$this->images();
4545
$this->query();
4646
} elseif ( UM()->is_request( 'admin' ) ) {
4747
$this->admin();
48-
} elseif ( UM()->is_request( 'frontend' ) ) {
48+
} elseif ( ! is_admin() && ! is_login() ) {
4949
$this->frontend();
5050
$this->images();
5151
$this->query();

readme.txt

Lines changed: 8 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.2
11+
Tested up to: 6.8.1
1212
Requires UM core at least: 2.6.8
13-
Tested UM core up to: 2.10.0
14-
Stable tag: 1.3.3
13+
Tested UM core up to: 2.10.4
14+
Stable tag: 1.3.4
1515

1616
== Description ==
1717

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

4141
== Changelog ==
4242

43+
= 1.3.4: June 18, 2025 =
44+
45+
- Fixed: Optimization features are disabled on the wp-login.php screen.
46+
- Tweak: Minor style changes.
47+
4348
= 1.3.3: February 20, 2025 =
4449

4550
- Fixed: Bookmark button style and script.

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.10.0
15-
* Version: 1.3.3
14+
* UM version: 2.10.4
15+
* Version: 1.3.4
1616
*
1717
* @package um_ext\um_optimize
1818
*/

0 commit comments

Comments
 (0)