Gradient background

Advanced WordPress Dashboard

Transform your WordPress admin with a powerful, customizable dashboard featuring 15+ analytics cards, real-time insights, and comprehensive site management tools.

uiXpress Advanced Dashboard showing overview category with site management cards

Everything You Need in One Dashboard

Replace the default WordPress dashboard with a powerful, card-based system that gives you complete control over your site insights.

15+
Dashboard Cards
2
Categories
8
Date Ranges
100%
Customizable

Overview Category

Essential site management and content insights to help you understand your site's status at a glance.

Recent Posts

Track your latest content with status breakdowns, publication dates, and author information.

Scheduled Posts

Visual calendar view of scheduled content with month navigation and post indicators.

Recent Comments

Monitor comment activity with moderation status, author details, and post links.

User Analytics

Track user registration trends with visual charts and registration statistics.

Media Analytics

Monitor media library usage, file types, storage size, and unused files.

Server Health

Monitor system performance, resource usage, and update notifications.

uiXpress Dashboard Overview category showing site management cards

Analytics Category

Comprehensive website traffic analysis, visitor behavior insights, and engagement metrics to understand your site's performance.

Page Analytics

Track page views and unique visitors with trend indicators and percentage changes.

Device Usage

Analyze visitor distribution across desktop, tablet, and mobile devices.

Active Users

Real-time tracking of users currently browsing your site.

Page Views Chart

Visual trend analysis with interactive line charts showing traffic over time.

Top Pages

Identify your most popular content with visitor count rankings.

Top Countries

Geographic visitor distribution with country flags and visitor counts.

Top Referrers

Track traffic sources with referrer icons and visitor statistics.

Bounce Rate & Time

Monitor engagement metrics with bounce rate and average session duration.

Analytics Map

Interactive world map showing visitor locations with color-coded regions.

uiXpress Dashboard Analytics category showing traffic and visitor data

Privacy-First Analytics

Your data belongs to you. All analytics are collected, stored, and processed entirely within your WordPress database with complete privacy and compliance.

Your Database, Your Data

All analytics data is stored directly in your WordPress database. You have complete ownership and control over your data.

Anonymous & Compliant

All visitor data is collected anonymously with no personally identifiable information. Fully GDPR and privacy compliant.

Efficient Storage

Data is stored in a dedicated, optimized table separate from your WordPress core tables for maximum efficiency and organization.

Zero Speed Impact

Optimized data collection and storage ensures no performance impact on your site. Analytics run in the background without affecting page load times.

How Analytics Data is Collected

Our analytics system collects visitor data directly on your server using lightweight JavaScript tracking. All data is processed and stored locally in your database, ensuring complete privacy and data ownership.

  • Data is collected anonymously with no personal information tracked
  • All data stored in your WordPress database in a dedicated analytics table
  • Optimized database structure ensures efficient queries and minimal storage
  • Background processing means zero impact on page load performance
  • Fully compliant with GDPR, CCPA, and other privacy regulations

Data Ownership Benefits

Unlike third-party analytics services, your data never leaves your server:

Complete Control

Export, delete, or manage your analytics data at any time

No Third Parties

No data sharing with external services or analytics providers

Privacy Compliant

Built-in privacy compliance with no additional configuration needed

Powerful System Features

Built with extensibility and performance in mind, the dashboard system provides a solid foundation for your WordPress admin experience.

Date Range Filtering

8 predefined ranges plus custom calendar selection. All cards update automatically when the date range changes.

Category System

Organize cards into logical categories with tab navigation and URL persistence.

Extensible Architecture

Hook-based system allows plugins to register custom cards and categories.

Responsive Design

Fully responsive grid layout that adapts to mobile and desktop screens.

Flexible Date Range Filtering

Choose from 8 predefined date ranges or use the custom calendar picker to select any date range. All dashboard cards automatically update when the date range changes.

uiXpress Dashboard date range picker interface with calendar and predefined ranges

Extend & Customize

The dashboard is built with extensibility in mind. Create custom cards, register new categories, and integrate with your plugins using our hook-based system.

Card Metadata

Define your card configuration with metadata

// metadata.js
export default {
  id: 'custom-stats',
  title: 'Custom Stats',
  description: 'Display custom statistics',
  width: 4,
  language: 'vue',
  category: 'site',
  requires_capabilities: ['manage_options']
};

Card Component

Build your card with Vue 3 Composition API

<!-- component.vue -->
<script setup>
import { ref, onMounted, watch } from 'vue';

const props = defineProps({
  dateRange: { type: Object, required: true },
  appData: { type: Object, required: true }
});

const stats = ref({ total: 0 });

const loadStats = async () => {
  // Fetch your data here
};

watch(() => props.dateRange, loadStats);
onMounted(loadStats);
</script>

Register Your Card

Use the hook system to register custom cards from your plugin

// In your plugin or theme
window.addEventListener('uixpress-dashboard-ready', () => {
  const { addFilter } = window.uixpressHooks;
  
  const myCustomCard = {
    metadata: {
      id: 'my-plugin-card',
      title: 'My Plugin Data',
      width: 4,
      language: 'vue'
    },
    component: MyCardComponent
  };
  
  addFilter('uixpress/dashboard/cards/register', 
    (widgets) => {
      return [...widgets, myCustomCard];
    }
  );
});

Learn more about extending the dashboard in our developer documentation

Why Choose uiXpress Dashboard?

Experience the difference a modern, powerful dashboard makes in your WordPress workflow.

Real-Time Insights

Get instant access to your site's analytics, content status, and system health without leaving your WordPress admin.

Fully Customizable

Organize cards into categories, adjust layouts, and extend functionality with custom cards through our hook system.

Zero Performance Impact

Built with performance in mind. Lightweight code, efficient data fetching, and optimized rendering ensure no slowdown.

Ready to Transform Your WordPress Dashboard?

Join thousands of WordPress professionals who trust uiXpress to deliver a modern, powerful admin dashboard experience.