wp-content/themes/StoreFront/js/back-end/gavern.metabox.js: jQuery.fn.live() is deprecated
Getting jQuery error in wordpress theme sorefront
Hi demo_project,
You can open this file and find the line 12.
Replace this code:
jQuery('.gavern_opengraph_upload_image_button').live('click', function( event ){
With the following code:
jQuery('body').on('click', 'gavern_opengraph_upload_image_button', function() {