Overriding Core Templates
Instead of replacing core files, developers can override the MSORG dashboard templates.
**How to override:**
Create a plugin that hooks into `vtupress_registered_templates` and points to your custom folder containing alternative `dashboard.php`, `history.php`, etc. (Requires the VTUPress Custom Template Enabler license active on the site).
```php
add_filter('vtupress_registered_templates', function($templates) {
$templates['my_premium_theme'] = [
'name' => 'Premium Theme 2026',
'path' => __DIR__ . '/templates/'
];
return $templates;
});
```