Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
642 views
in Plugins by

This is another error I saw.

The error comes out whenever I enable theme switching.


Notice: Undefined index: q_list in /home/username/public_html/mydomain.com/qa-include/qa-base.php(510) : eval()'d code on line 53

 

I really want to enable theme switching. Thanks.

Q2A version: Q2A 1.6.2

1 Answer

0 votes
by

A temporary solution is to disable reporting notice errors by adding the following at the top of q2a-theme-switcher-master\qa-plugin.php file:

error_reporting(0);
error_reporting(E_ERROR | E_WARNING | E_PARSE);

You may ask NoahY to try fixing this issue.

...