uiXpress - A Simple Yet Powerful Admin Theme for WordPress

uiXpress - A Simple Yet Powerful Admin Theme for WordPress 1.4.0

No permission to download
Decryption key:


uiXpress - A Simple Yet Powerful Admin Theme for WordPress v1.2.15 Nulled
== Changelog ==

= 1.2.15 =
* Release Date 27 November 2025 *

* Added Remote Site Switcher feature
- Added ability to configure remote WordPress sites in global settings
- Remote sites require URL, username, and application password
- Added remote site switcher UI in toolbar for quick site switching
- Selected site is saved in localStorage and persists across sessions
- Modified lmnFetch function to handle fetching to remote sites using Basic Auth
- Added capability-based visibility control for remote site switcher (defaults to admin users)
- Remote site switcher only appears when remote sites are configured and user has required capability
- Switching sites triggers page reload to refresh app context
- Added first-time explanation dialog when switching to remote sites

* Enhanced REST API Security with Unified Permission System
- Created RestPermissionChecker utility class for consistent permission validation
- Local requests: Validates nonce for CSRF protection
- Remote requests: Validates Basic Auth with application password authentication
- Automatically detects request origin (local vs remote) and applies appropriate security
- Updated all REST endpoints to use the unified permission system
- Maintains security standards while supporting remote site operations
- Supports WordPress application passwords for secure remote authentication

* Security: Fixed potential password exposure in remote sites options
- Added capability check before outputting remote_sites and remote_site_switcher_capability to frontend
- Prevents users without required capability from accessing remote site passwords
- Uses remote_site_switcher_capability setting (defaults to manage_options) for access control
* Enhanced Remote Site Menu Filtering
- When a remote site is active, menu now shows only top-level uiXpress app pages
- Only displays pages that are enabled in settings (respects feature toggles)
- Supported pages: Modern Media Page, Modern Plugins Page, Menu Creator, Modern Dashboard, Activity Log, Database Explorer, Admin Notices, Role Editor, and Modern Users Page
- uiXpress top-level menu (Settings) and its submenu items are preserved when remote site is active
- Submenu items under uiXpress Settings are filtered based on enabled features
- All other submenus are hidden when remote site is active for cleaner navigation
- Menu automatically updates when switching between local and remote sites
* Fixed Media Library Uploads for Remote Sites
- Updated media upload function to use lmnFetch instead of direct fetch calls
- Media uploads now properly work when viewing remote sites
- Uploads are correctly sent to the selected remote site instead of local site
- Supports Basic Auth authentication for remote site uploads
* Fixed scroll issue with latepoint
* Fixed back to dashboard button on frontend toolbar
* Added function existence checks for disk_free_space() and disk_total_space() in server health to prevent fatal errors on systems where these PHP functions are unavailable
* Fixed issue on safari where gutenburg in full screen mode was overlayed.
Decryption key:


uiXpress - A Simple Yet Powerful Admin Theme for WordPress v1.2.14 Nulled
== Changelog ==

= 1.2.14 =
* Release Date [Current Date] *

* Added minimal animated progress indicator panel for plugin uploads
- Replaced small spinner in upload button with elegant progress panel
- Shows file name being uploaded with animated progress bar
- Minimal dark design with zinc color palette
- Smooth slide-up animation when upload starts
- Positioned at bottom center of screen for visibility
- Follows dark minimalist design system

* Redesigned Magic Dark Mode with per-page opt-in system
- Replaced global toggle with per-page opt-in approach for better control
- Uses CSS-based invert filter (`filter: invert(1) hue-rotate(180deg)`) for efficient dark mode conversion
- Added quick actions in global search to enable/disable magic dark mode per page
- Pages can be individually added to magic dark mode list via search actions
- Automatically excludes images, videos, iframes, and media elements
- Better performance with no DOM manipulation overhead
- Smooth transitions when toggling dark mode
- Handles dynamically added content automatically
- Added comprehensive exclusions for charts, code blocks, and color pickers
- Removed global "Magic dark mode" toggle from settings (now per-page only)
- Fixed settings persistence and reactivity issues
- Magic dark mode now properly saves and loads on page refresh

* Improved Menu Scrollbar Styling
- Updated menu component with modern slimline scrollbar design
- 6px width scrollbar with smooth transitions
- Enhanced dark mode support with appropriate color schemes
- Always visible when content overflows (removed hover-only behavior)
- Cross-browser support for Webkit and Firefox
- Applied to both minimized and standard menu states

* Made adoptedStyleSheets globally available via Vue provide/inject
- Created useAdoptedStyleSheets composable for easy access to shared stylesheet
- Provided adoptedStyleSheets from menu-wrapper.vue root component
- Child components can now inject and reuse the same stylesheet instance
- Reduces code duplication and ensures consistent styling across ShadowRoot components

* Updated all language translation files.

* Fixed menu link URL encoding and active state detection
- Fixed issue where menu links were being double-encoded (e.g., %2F for / in query parameters)
- Added URL formatting logic to decode URLs before rendering to prevent encoding issues
- Improved active link detection to check window.location against menu item URLs
- Added support for checking both encoded and decoded versions of URLs and window.location
- Implemented precedence logic where direct location matches take priority over WordPress native active state
- Direct matches now properly deactivate conflicting menu items at the same level
- Fixed WooCommerce analytics link names disappearing issue caused by URL encoding mismatches
- Centralized URL matching logic in reusable utility function (isCurrentLocationMatch.js)
- Applied fixes to both top-level menu items and submenu items
Decryption Key :


uiXpress - A Simple Yet Powerful Admin Theme for WordPress v1.2.13
= 1.2.13 =
* Release Date 20 November 2024 *

* Refactored app entry files to use centralized setGlobalProperties function
- Created enhanced setGlobalProperties function that accepts optional script tag selectors
- Added support for secondary script tags (e.g., dashboard-script, posts-script, plugins-script)
- Created setVueGlobalProperties helper function to eliminate code duplication
- Updated all 17 app entry files to use the centralized functions
- Added support for additional data attributes: postTypes, mimeTypes, currentUser, dashboard_data, supports_categories, supports_tags, postStatuses, pluginsList
- Reduced code duplication by ~20-30 lines per file
- Improved maintainability with single source of truth for data attribute parsing

* Updated all plugin URL references to use pluginBase instead of hardcoded paths
- Replaced all instances of `${appStore.state.siteURL}/wp-content/plugins/uixpress/` with `appStore.state.pluginBase`
- Updated 11 Vue components that dynamically load stylesheets
- Fixed hardcoded CSS mask URL in plugin-inspect.vue to use dynamic CSS variable
- Now properly supports custom wp-content directory names via WordPress plugins_url() function
- All plugin asset URLs now use consistent, centralized source

* Updated Vite configuration for better compatibility
- Changed base path from absolute `/wp-content/plugins/uixpress/app/dist/` to relative `./`
- Ensures compatibility with WordPress installations that use custom wp-content directory names
- WordPress plugins_url() function now handles full URL construction correctly

* NEW: License key system overhaul
- Removed LemonSqueezy integration (admin/src/Rest/LemonSqueezy.php deleted)
- Migrated to new license key API endpoint
- License key and instance_id are no longer exposed to frontend JavaScript (security improvement)
- Updated license activation, validation, and removal functions in settings panel
- Improved error handling and user feedback for license operations
- License validation now uses validate-activate endpoint which returns existing activation if already activated

* Fixed issue with submenu items unable to be added as a favourite.
* Fixed style conflicts with fluent cart
* Analytics: Disabled caching for active users endpoint to ensure real-time data
- Added cache control headers (no-cache, no-store, must-revalidate) to active users REST endpoint
- Active users count now always returns fresh data without any caching layer
* Fixed fatal error when deleting plugins in Activity Logger
- Fixed ArgumentCountError in log_plugin_deleted() method
- Made second parameter optional with default value to match WordPress delete_plugin hook behavior
- Updated hook registration to accept only 1 argument as WordPress provides
* Fixed Force Global Theme setting not working properly
- Fixed issue where light theme couldn't be forced when browser was in dark mode
- Global override now properly takes precedence over browser preference
- Added watcher to update theme when force_global_theme setting changes
- Media query listener no longer overrides global theme setting
Decryption key:


uiXpress - A Simple Yet Powerful Admin Theme for WordPress v1.2.11 Nulled
No changelogs found!


Use this license key
Decryption key:


uiXpress - A Simple Yet Powerful Admin Theme for WordPress v1.0.24 Nulled
== Changelog ==

= 1.0.24 =
* Release Date 3 September 2025 *
Decryption key:


uiXpress - A Simple Yet Powerful Admin Theme for WordPress v1.0.23 Nulled
= 5.1.0 - Release date: 2025-03-31
The 5.1.0 minor release includes some new features and improvements:

  • Support for sending responses as Uint8Array
  • Added support for ETag option in res.sendFile()
  • Added support for adding multiple links with the same rel with res.links()
  • Performance: Use loop for acceptParams
  • [email protected]
    • Remove legacy node.js support checks for Brotli & AsyncLocalStorage
    • Remove unpipe & destroy
  • [email protected]
    • Restore debug. Now with the router scope instead of express.
    • Remove legacy node.js support checks for setImmediate
    • Deprecate non-native promise support
    • Remove after, safe-buffer, array-flatten, setprotoypeof, methods, utils-merge
  • [email protected]
    • Remove legacy node.js support checks for headersSent, setImmediate, & http2 support
    • Remove unpipe
  • Transitioned all remaining dependencies to use ^ ranges instead of locked versions
  • Add package.json funding field to highlight our OpenCollective
  • See Changelog v5.1.0

    5.0.1 - Release date: 2024-10-08​

Decryption key:


uiXpress - A Simple Yet Powerful Admin Theme for WordPress v1.0.22 Nulled

= 1.0.22 =
* Release Date 27 June 2025 *

* Fixed issue with toolbar icon for CMP - coming soon plugin
* Fixed conflict with sureforms plugin settings
* Added new feature. Admin Notices allows you to create custom notices and that display to given user groups. Can be dismissable or sticky.
Decryption key:


Enter ABCDEF12-3456-7890-ABCD-EF1234567890 to activate

Release 1.0.21 | uiXpress
5th of March, 2025
Small stability update.

Added uiXpress logo on frontend toolbar when no site logo is set
Fixed issue on modern post lists where CPTs without a specific rest base couldn't be duplicated or deleted
Fixed sort order indicator arrow which would sometimes indicate incorrect order (asc / desc)
Fixed issue with woocommerce new order product select
Fixed issue with custom CSS where special characters were getting encoded
Decryption key:


Download uiXpress v1.0.20 - A Simple Yet Powerful Admin Theme for WordPress Nulled Free
= 1.0.20 = Release Date 27 January 2024

* Added fix for woo order items dropdown
* Fixed miss-aligned button on site health screen
* Added import / export for settings
* Added option to disable language selector on the login page
* Added style fix for independent analytics
* Added style fix for sirv image plugin
* Style fix for ACF sticky header
* Fixed issue with login email confirmation from wordfence
* Patched issue that could cause some submenu links not to work (wowstore for eg)
Decryption key:


* Added catch for settings css missing
* Fixed icon's on frontend toolbar for edit page and customize
* Fixed conflicts with SureTriggers and Defender plugins
* Fixed style conflict with slider revolution plugin
* Added option to disable global search
* Dark mode / theme change will now apply to VendBase (update to VendBase will be required)
* Fixed issue in global search where clicking on a user would send you to the wrong link
* Menu items in global search now respect custom menus

About us

  • Babiato Forum - The webmaster community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day, updating Daily resource to make sure our community is one of the best.

Quick Navigation

User Menu