• Resolved rbottomley

    (@rbottomley)


    I have a widget that was having the same issues as Image Widget once was: code that was attached to sidebar_admin_setup action was not firing when using the widget in a page, but would work fine on the global widgets. Around line 1286 of wp-page-widgets.php I see hardcoded code to fix Image Widget. But what about any other widgets that need this action?

    Instead of the code for Image Widget, how about doing:

    do_action('sidebar_admin_setup');

    This fixed my widget. Is there a reason not to call do_action? If there is no downside, this generic fix would work for any widget the requires the sidebar_admin_setup action.

    http://wordpress.org/plugins/wp-page-widget/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter rbottomley

    (@rbottomley)

    When I said “line 1286”, I was looking at the wrong thing. That should be “line 107”. Sorry.

    Plugin Author CodeAndMore

    (@codeandmore)

    That line is open for all widgets now so consider solved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Generic fix for Image Widget type problems’ is closed to new replies.