Viewing 1 replies (of 1 total)
  • Thread Starter Predrag – WPMU DEV Support

    (@wpmudev-support1)

    You can solve this issue temporarily by editing the following latest version( 1.7.2 ) of Socials Ignited plugin file on line number 19 as below.

    Socials Ignited plugin file:
    socials-ignited\js\admin_widget.js

    Before Editing:

    if(settings.data.search('action=save-widget') != -1 ) {

    After Editing:

    if( settings.data.search != undefined && settings.data.search('action=save-widget') != -1 ) {

    Note: You are making changes in the plugin file and these changes will be overwritten and lost when you update the plugin and you will have to make these again after plugin updation.

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin is causing JavaScript error on widgets screen’ is closed to new replies.