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

1 Answer

+1 vote
by
selected by
 
Best answer

For only mobile, in qa-plugin.php file, before registering the module add

if(qa_is_mobile_probably()){
    qa_register_plugin_module(
    ...
    );
}

However,I am not sure if this is the right way.

by
Thank you so much.
...