Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • For the mean time the hack is the only way… I have test both plugin from Viper007Bond and Lesterchan (Both ppl also a very active in wordpress community), and both have conflict with Ad Buttons also. I still cant figure out why the Ad Buttons widget got declare twice but by putting if (function_exists()) code inside the widget function to check if the function has been call or not work perfectly.

    FYI i change akismet plugin widget call into widgets_init and it work just fine. I don’t know why Ad Buttons and WP Cumulus have this problem and i think it not just gonna be this 2 plugin. Maybe it will effect many plugin.

    I’m giving you a quick hack on how to resolve the error. Open up the conflict plugin (Not Bbpress Latest Discussion) and find “widget_init”. Replace that into “init”. Example:

    add_action('widgets_init', 'widget_init_adbuttons_widget');

    Change into

    add_action('init', 'widget_init_adbuttons_widget');

    Akismet plugin by default not use the “widget_init” (That why there is no conflict with them and they use old widget function) and they been develop by wordpress developer.

    @ph23man & buddha trance

    I dont think this is Bbpress Latest Discussion problem since both of the plugin (Ad Buttons & WP Cumulus) break with WP-Polls also. It seem both the plugin not playing nice with wordpress new widget class.

    P/S: i cant reply with my other wordpress account since i dont know why wordpress ban me from posting

Viewing 3 replies - 1 through 3 (of 3 total)