Hi,
I created a widget that will be display something on the left side.
I did like below:
1. In the plugin.php file:
- Create plugin: qa_register_plugin_module('widget', 'qa-filename.php', 'qa_pluginname', 'Title');
2. In the qa-filename.php:
class qa_pluginname{
function allow_template($template){
return true;
}
function allow_region($region){
return true;
}
public function output_widget($region, $place, $themeobject, $template, $request, $qa_content){
echo 'HELLO, WORLD!';
}
}
I'm using Q2A v1.4.3
But nothing display as expected. Somebody can help?
Thank you very much.