My client asked that I remove the pop up. I removed the plugin but the pop up still persists. What do I need to do to get this pop up from showing?
Thanks in advance.
]]>installed and enabled. not working. see https://www.joannamacy.net
]]>If you use this plugin alongside a performance optimisation or caching plugin, and you have JavaScript concatenation enabled, you might run into a jQuery error. It would show up in the browser console on the front-end like this:
ReferenceError: jQuery is not defined
This might happen due to missing dependencies and can usually be fixed by changing this line:
wp_register_script( 'net-neutrality-js', plugins_url( 'net-neutrality.js', __FILE__ ), array(), '20140904' );
into this:
wp_register_script( 'net-neutrality-js', plugins_url( 'net-neutrality.js', __FILE__ ), array( 'jquery' ), '20140904' );
(Note the declared dependency: array( 'jquery' )
)
I have long had the Cat Signal plugin installed and active, which was updated for the action this week. Is there a conflict between these two? Is it otherwise overkill to have both active?
]]>