• Resolved Chinmay Rajyaguru

    (@inis)


    Respected gopiplus team,
    I just installed your RSS Scroller. In #WP debug mode two errors are occurring.

    Errors:

    [05-May-2017 10:56:05 UTC] PHP Notice:  Undefined index: width in /var/www/html/wp-content/plugins/rss-scroller/rss-scroller.php on line 111
    [05-May-2017 10:56:05 UTC] PHP Notice:  Undefined index: height in /var/www/html/wp-content/plugins/rss-scroller/rss-scroller.php on line 112

    Kindly resolve this earlier.
    Thank you!

Viewing 1 replies (of 1 total)
  • Thread Starter Chinmay Rajyaguru

    (@inis)

    I’ve resolved this error!

    OLD CODE:

    $rss_scr_width = $atts['width'];
    $rss_scr_height = $atts['height'];

    RESOLVED BY ADDING isset():

    $rss_scr_width = (isset($atts['width']));
    $rss_scr_height = (isset($atts['height']));
Viewing 1 replies (of 1 total)

The topic ‘Undefined index: Width & Height – ERROR’ is closed to new replies.