Okay, got it. You need to override function qa_get_site_theme().
1. Open qa-plugin.php, register the override:
// core function overrides
qa_register_plugin_overrides('my-q2apro-overrides.php');
2. Create a file my-q2apro-overrides.php and do the override:
<?php
/*
Plugin Name: MY PLUGIN
*/
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
header('Location: ../../');
exit;
}
// override theme
function qa_get_site_theme()
{
return 'my-custom-theme';
// default
return qa_opt(qa_is_mobile_probably() ? 'site_theme_mobile' : 'site_theme');
}
/*
Omit PHP closing tag to help avoid accidental output
*/