Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
293 views
in Q2A Core by
when i add ask box in "Show widget in this position on all available pages"

 

i cant see it in quastion page

exmple: http://soualwjoab.com/2169/

1 Answer

+1 vote
by
selected by
 
Best answer

It is necessary to hack Q2A core source. However, because version up of Q2A becomes troublesome, I recommend that you make new plugin with source file below.

File: qa-include/qa-widget-ask-box.php:: allow_template() on L35

1. Case of only question page

Add one line below.

case 'question':
2. Case of all page
 
Replace function below.
function allow_template($template) {
  return true;
}

 

...