• Resolved fairmichel

    (@fairmichel)


    I receive the following error
    Notice: Undefined index: title in /home/eetcafeo/public_html/hakvanitalie.nl/wp-content/plugins/google-language-translator-uit/widget.php on line 10

    How can I solve this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author edo888

    (@edo888)

    Hi,

    I recommend you to turn off PHP notices for your website.

    Line 10 in widget.php file is this:
    $title = apply_filters( 'widget_title', $instance['title'] );

    You can change it to be like this:
    $title = apply_filters( 'widget_title', isset($instance['title']) ? $instance['title'] : '' );

    Thanks! 🙂

Viewing 1 replies (of 1 total)

The topic ‘Error in plug-in’ is closed to new replies.