‘Uncaught SyntaxError: Invalid or unexpected token’ added to every admin page
-
This plugin is adding this error on every admin page (in the browser console) due to invalid syntax in your dynamic JavaScript.
Uncaught SyntaxError: Invalid or unexpected token
This plugin is adding this code and the ‘sec’ value in the ajax call is not valid syntax.
<script>
? ? ? ? ? ? //DYNAMIC JAVASCRIPT
? ? ? ? ? ? jQuery('#woof_alert_woobe .open-plugin-details-modal').on('click', function () {
? ? ? ? ? ? ? ? jQuery('#woof_alert_install_button_woobe').hide().next().show();
? ? ? ? ? ? ? ? return true;
? ? ? ? ? ? });
? ? ? ? ? ? jQuery(function ($) {
? ? ? ? ? ? ? ? var alert_w = $('#woof_alert_woobe');
? ? ? ? ? ? ? ? alert_w.on('click', '.notice-dismiss', function (e) {
? ? ? ? ? ? ? ? ? ? $.post(ajaxurl, {
? ? ? ? ? ? ? ? ? ? ? ? action: 'woof_dismiss_alert',
? ? ? ? ? ? ? ? ? ? ? ? alert: 'woocommerce_bulk_editor',
? ? ? ? ? ? ? ? ? ? ? ? sec: 27d83484ac ? ? ? ? ? ? ? ? ? ?});
? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ? $(document).on('tb_unload', function () {
? ? ? ? ? ? ? ? ? ? if (jQuery('#woof_alert_install_button_woobe').next().hasClass('updating-message'))
? ? ? ? ? ? ? ? ? ? ? ? return;
? ? ? ? ? ? ? ? ? ? jQuery('#woof_alert_install_button_woobe').show().next().hide();
? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ? $(document).on('credential-modal-cancel', function () {
? ? ? ? ? ? ? ? ? ? jQuery('#woof_alert_install_button_woobe').show().next().hide();
? ? ? ? ? ? ? ? });
? ? ? ? ? ? });
? ? ? ? </script>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.