[Plugin wpClassified] Side bar widget not working solution
-
If like me and you couldn’t get the wp-classifed sidewidget to work do the following
edit line 789 of wp-classified/wpClassified.php
from
wp_register_sidebar_widget(‘wpClassified’, ‘widget’, null, ‘wpClassified’);
register_widget_control(‘wpClassified’, ‘widget_control’);
}to
register_sidebar_widget(‘wpClassified’, ‘widget’, null, ‘wpClassified’);
register_widget_control(‘wpClassified’, ‘widget_control’);
}simpley remove the wp_ and the widget will now appear!
- The topic ‘[Plugin wpClassified] Side bar widget not working solution’ is closed to new replies.