Hi all, I have created a widget and a page for my plugin.
Now I would like to display the widget on this plugin page (that is not available in the custom page list).
I tried the following in the 'plugin_page'.php without success:
$widget['title'] = "qa_best_users_per_month_widget";
$module=qa_load_module('widget', $widget['title']);
$qa_content['widgets'][$region][$place][]=$module;
Update: I forgot to define $region and $place. But after assigning values:
$region = "side"; $place = "high";
I got the following error:
PHP Fatal error: Call to a member function output_widget() on a non-object
question still remains open...