Init User Engine is a lightweight, no-bloat user system for modern WordPress sites. It's designed for maximum frontend flexibility and gamified user engagement. All dynamic interfaces are rendered via JavaScript with real-time REST API interaction.
No jQuery. Minimal settings. Smart by default.
What you get:
- Display user avatar and dashboard via shortcode
- Show level, EXP, Coin/Cash, and full user wallet
- Let users check-in daily and receive timed rewards
- Auto-track referral registrations with reward system
- Allow users to buy VIP status using in-site currency
- Built-in inbox for notifications (uses custom DB table)
- Custom avatar support with upload & preview modal
- Send custom notifications to selected users or all members from wp-admin
This plugin is the core user system behind the
Init Plugin Suite – optimized for frontend-first interaction, extensibility, and real-time gamification.
GitHub repository:
https://github.com/brokensmile2103/init-user-engine
1.5.2 – May 17, 2026
- Updated custom dashicon CSS to use
currentColor for full compatibility with WordPress Administration Color Schemes
- Removed hardcoded icon colors that conflicted with theme-aware color variables
- Ensured compatibility with WordPress 7.0's updated admin color system
1.5.1 – April 22, 2026
- Refactored migration architecture to use self-looping WP-Cron instead of admin_init execution
- Introduced background migration runner (
init_plugin_suite_iue_migration_event) with automatic rescheduling
- Added transient-based locking mechanism to prevent concurrent migration execution
- Migration process is now fully decoupled from admin traffic and runs reliably in low-traffic environments
- Improved stability and consistency of batch migration for large datasets
- Activation hook now schedules migration automatically if not already completed
- Maintained full backward compatibility with existing migration logic and data structures
1.5.0 – April 21, 2026
- Migrated transaction log (coin/cash) and EXP log from user meta to dedicated database tables
- Introduced
init_user_engine_transaction_log and init_user_engine_exp_log tables for better scalability
- Automatic data migration from old user meta (
iue_coin_cash_log, iue_exp_log) with cleanup on completion
- Migration runs in batches of 200 users to prevent timeouts on large sites and resumes if interrupted
- REST API pagination for transaction and EXP history now uses true COUNT + OFFSET instead of loading all records
- Added
wp_cache support for transaction and EXP log reads with automatic invalidation on write
- Database schema check is now version-gated to avoid redundant queries on every admin load
- Schema and migration are also triggered via
upgrader_process_complete for reliable update handling
- Full backward compatibility maintained: all hooks, filters, and i18n strings are preserved
1.4.9 – April 15, 2026
- Added filter to override theme color system (theme_color, theme_active_color)
- Introduced centralized color hook for easier customization from themes and addons
- Ensured safe fallback when filter returns incomplete or invalid values
1.4.8 – March 25, 2026
- Fixed check-in countdown not starting on new devices after login
- Countdown now resets to full duration on unrecognized devices
- Remaining time is saved only on tab hide and page unload, not every second
- Fixed date comparison using locale-aware format to prevent UTC offset mismatch
1.4.7 – March 24, 2026
- Added wp_cache support for unread Inbox count
- Reduced database load by caching COUNT(*) queries per user
- Cache is automatically cleared on insert, read, delete, and bulk operations
- Introduced centralized cache helpers and consistent naming
- Improved performance and internal code structure for better maintainability
1.4.6 – February 7, 2026
- Fixed redeem code generation logic to respect custom codes
- Single-use codes now preserve exact input when quantity is 1
- Prefix + random suffix only applies to batch generation (qty > 1)
- Multi-use and locked codes no longer force random suffixes
1.4.5 – February 4, 2026
- Fixed Inbox pagination not respecting the active filter
- Total message count and total pages are now calculated per category
- Prevents incorrect page numbers when switching between filters
- Ensures accurate server-side pagination and consistent navigation
1.4.4 – February 4, 2026
- Added bulk generation for single-use redeem codes
- Supports quantity-based creation with automatic prefix usage
- Generates random 6-character suffix using
wp_generate_password()
- When quantity = 1, uses the exact input code (no random suffix appended)
- Added safe delete action for redeem codes (only unused codes can be removed)
- Improved redeem code creation flow with better validation, sanitization, and consistent behavior across modes
- Upgraded Inbox system with categorized filters
- Added filters: All, Unread, System, Rewards, Activity, Other
- Server-side filtering with correct pagination
- Logical grouping of message types for cleaner UX
- Minor UI and internal refinements for consistency and maintainability
1.4.3 – January 28, 2026
- Added VIP state–aware body classes for frontend customization
- Automatically adds
iue-vip for active VIP users
- Adds
iue-vip-expired for users whose VIP has expired
- Adds
iue-expire-soon when VIP is close to expiration (default: ≤ 1 day)
- Introduced extensibility hooks for VIP presentation logic
- New filter
init_plugin_suite_user_engine_vip_expire_soon_threshold to customize the “expire soon” window
- New filter
init_plugin_suite_user_engine_body_vip_classes to allow developers to add or modify VIP-related body classes
- Improved separation between VIP core logic and UI layer
- Enables lightweight CSS-based customization without conditional checks
- Keeps VIP business logic isolated and stable
- Minor internal refinement for consistency and long-term maintainability
1.4.2 – November 19, 2025
- Updated transaction logging system for Coin & Cash
- VIP users now automatically receive the correct bonus % directly inside the log entry
- Log entries now include:
original (amount before bonus)
amount (amount after bonus)
vip_bonus flag and bonus_percent value
- Ensures perfectly aligned behavior with
init_plugin_suite_user_engine_add_coin()
- Improved accuracy of VIP-related operations
- Bonus only applies to Coin and only when adding (no bonus for deductions)
- Avoids mismatch between displayed history and real balance changes
- Enhanced internal data consistency
- Log entries capped at 100 items with stable array slicing
- Ensures clean, lightweight meta storage over long-term usage
- Minor structural refinement for better readability and maintainable code paths
1.4.1 – November 17, 2025
- Fixed VIP bonus logic when modifying Coin balance
- Bonus percentage now applies only when adding positive Coin amounts
- Negative adjustments (deducting Coin) no longer receive bonus
- Added support for
data-iue="register"
- Automatically opens the modal and switches directly to the Register tab
- Ignores custom register URL mode (only toggles modal when active)
- Improved WPCS compatibility
- Added targeted
phpcs:ignore rules for PluginCheck false positives
- Clean handling of dynamic table names in prepared SQL queries
- No other changes; fast patch release for immediate correctness
1.4.0 – November 4, 2025
- Improved Admin User Overview security model
- Any user can view their own overview (Coin, Cash, Level, VIP info, Inbox)
- Action buttons (Remove VIP / Toggle Avatar Upload Ban / Inbox Statistics) are now restricted to administrators only
- UI gracefully disables restricted actions for non-admin users instead of hiding them
- Added server-side permission guards for sensitive actions
iue_remove_vip and iue_toggle_avatar_ban now require manage_options
- Requests are validated using capability check + nonce verification
- Prevents URL/REST crafting or manual calls to admin-post endpoints
- Improved admin notices behavior
- Success/error messages only appear for administrators
- Notices limited to
profile.php and user-edit.php screens
- Minor code cleanup and consistency improvements to maintainable structure
View full changelog (all versions): Init User Engine – Changelog