Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author socialdude

    (@socialdude)

    Thanks Eric – what is your website url?

    Thread Starter Eric

    (@shamai)

    unfortunately it’s in development and I cannot easily give you that access….

    Thread Starter Eric

    (@shamai)

    These are some of the erros it throws:
    ( ! ) Notice: Undefined index: showf in /app/public/wp-content/plugins/ultimate-social-media-icons/libs/sfsi_widget.php on line 92 Call Stack #TimeMemoryFunctionLocation 10.0000407080{main}( )…/customize.php:0 24.882313608784do_action( )…/customize.php:265 34.882313609160WP_Hook->do_action( )…/plugin.php:465 44.882313609160WP_Hook->apply_filters( )…/class-wp-hook.php:310 54.905213715520WP_Customize_Manager->customize_pane_settings( )…/class-wp-hook.php:286 65.000613863392WP_Widget_Form_Customize_Control->json( )…/class-wp-customize-manager.php:4877 75.000613863392WP_Widget_Form_Customize_Control->to_json( )…/class-wp-customize-control.php:331 85.000713865912WP_Customize_Widgets->get_widget_control_parts( )…/class-wp-widget-form-customize-control.php:117 95.000713866664WP_Customize_Widgets->get_widget_control( )…/class-wp-customize-widgets.php:1072 105.000713884248wp_widget_control( )…/class-wp-customize-widgets.php:1053 115.000813885056Sfsi_Widget->form_callback( )…/widgets.php:265 125.000913885800Sfsi_Widget->form( )…/class-wp-widget.php:517 ” id=”widget-sfsi-widget-3-showf” name=”widget-sfsi-widget[3][showf]” />

    Please go to the plugin page to set your preferences

    Plugin Author socialdude

    (@socialdude)

    Ok then it’s very hard for us to debug. Maybe you reach out to us again when live?

    You can switch error reporting off under question 6, however that doesn’t help you to get the widget work I guess. Maybe you try placing the icons by other means?

    Those errors often point to a conflict with your theme, so maybe your theme creator can help also.

    Thread Starter Eric

    (@shamai)

    i am the theme creator. lol.

    Thread Starter Eric

    (@shamai)

    I changed the theme to twenty seventeen and the errors are still there.

    Plugin Author socialdude

    (@socialdude)

    Ok then please provide us access when live.

    Thread Starter Eric

    (@shamai)

    Ok. The issue seems to be from libs/sfsi_widget.php line 29.

    Your are trying to get the title for the widget, which has not been set yet so it throws an error of undefined offset.
    You should surround that line with isset and create a default to show.

    What you have:
    apply_filters('widget_title', $instance['title'] )

    What you need:
    isset( $instance['title'] ) ? apply_filters('widget_title', $instance['title'] ) : ''

    Plugin Author socialdude

    (@socialdude)

    Great, thank you for the pointers. The devs will check early next week. We’ll update you here.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Broken arrays and missing indexes’ is closed to new replies.