Hello, some updates were out today so I re-tried running updates to plugins and here are the two errors in the JS console that block updates from running when I check the select all checkbox then click the “Update Plugins” button.
Line 100 in /wp-content/plugins/go-high-level-extension-for-gravity-form/admin/js/ghl-gf-extension-admin.js?ver=5.0.0
ghl-gf-extension-admin.js?ver=5.0.0:100
Uncaught TypeError: $ is not a function
at HTMLDocument.<anonymous> (ghl-gf-extension-adm…js?ver=5.0.0:100:13)
at HTMLDocument.dispatch (jquery.min.js?ver=3.7.1:2:40035)
at v.handle (jquery.min.js?ver=3.7.1:2:38006)
(anonymous) @ ghl-gf-extension-admin.js?ver=5.0.0:100
dispatch @ jquery.min.js?ver=3.7.1:2
v.handle @ jquery.min.js?ver=3.7.1:2
Line 100 in /wp-content/plugins/go-high-level-extension-for-gravity-form/admin/js/ghl-gf-extension-admin.js?ver=5.0.0
ghl-gf-extension-admin.js?ver=5.0.0:100
Uncaught TypeError: $ is not a function
at HTMLDocument.<anonymous> (ghl-gf-extension-adm…js?ver=5.0.0:100:13)
at HTMLDocument.dispatch (jquery.min.js?ver=3.7.1:2:40035)
at v.handle (jquery.min.js?ver=3.7.1:2:38006)
at Object.trigger (jquery.min.js?ver=3.7.1:2:70124)
at HTMLInputElement.<anonymous> (jquery.min.js?ver=3.7.1:2:70726)
at Function.each (jquery.min.js?ver=3.7.1:2:3129)
at e.<computed>.each (jquery.min.js?ver=3.7.1:2:1594)
at e.<computed>.trigger (jquery.min.js?ver=3.7.1:2:70701)
at e.<computed>.<anonymous> (jquery-migrate.min.js?ver=3.4.1:2:10514)
at e.<computed> [as click] (jquery-migrate.min.js?ver=3.4.1:2:1582)
(anonymous) @ ghl-gf-extension-admin.js?ver=5.0.0:100
dispatch @ jquery.min.js?ver=3.7.1:2
v.handle @ jquery.min.js?ver=3.7.1:2
trigger @ jquery.min.js?ver=3.7.1:2
(anonymous) @ jquery.min.js?ver=3.7.1:2
each @ jquery.min.js?ver=3.7.1:2
each @ jquery.min.js?ver=3.7.1:2
trigger @ jquery.min.js?ver=3.7.1:2
(anonymous) @ jquery-migrate.min.js?ver=3.4.1:2
e.<computed> @ jquery-migrate.min.js?ver=3.4.1:2
(anonymous) @ wpe-common.js?ver=5.0.1:101
(anonymous) @ wpe-common.js?ver=5.0.1:273
dispatch @ jquery.min.js?ver=3.7.1:2
v.handle @ jquery.min.js?ver=3.7.1:2
$('a.exit--toast').click(function() {
$("#openToast").fadeOut(1000, 0);
});
$(document).on('click', function (e) {
if ($(e.target).closest(".notification--reminder").length === 0) {
$("#openToast").fadeOut(1000, 0);
}
});
$(document).ready(function() {
$('#location-table').DataTable();
});
});
I see at the top of this file you have
$ = jQuery;
$(document).ready(function(){
Perhaps instead you should use the more common method here:
jQuery(document).ready(function($) {