• Resolved heather.m

    (@heatherm-1)


    When I transferred my website from being locally hosted to a live server, I started getting error messages on several plugins, including this one.

    I received an error message saying that the register_sidebar_widget and register_sidebar_control were deprecated on lines 153-154. A quick search indicated that I needed to swap them out with the new syntax. However, doing so generated new error messages b/c the new syntax requires 3 parameters. I read in a forum for a different plugin that you need to add a unique id as the 1st string. Eventually this is what worked for me:

    wp_register_sidebar_widget('subpg-displaywidget',__('SubPages Display'), 'widget_SubPages');
    wp_register_widget_control('subpg-ctrl','SubPages Display','subpages_control');

    The only problem is that now the widget says it has no options, whereas before it allowed me to select depth levels, etc. I’m not sure if this is caused somehow by what I did or not. However, my site is working fine without the options, listing the subpages as they were before.

    Hope this helps someone else!

    http://wordpress.org/extend/plugins/display-subpages/

Viewing 1 replies (of 1 total)
  • Thread Starter heather.m

    (@heatherm-1)

    Update: I later discovered that while installing wp on the new server, it was somehow set in debug mode. Once that was fixed, I no longer received these and similar messages. I have since removed my modifications to the code and full functionality returned.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: SubPages] Fixed error messages for wp 3.1.1’ is closed to new replies.