diff --git a/includes/views/js/import-metabox-edit.js b/includes/views/js/import-metabox-edit.js index a710e7d9..ced9bbf6 100644 --- a/includes/views/js/import-metabox-edit.js +++ b/includes/views/js/import-metabox-edit.js @@ -545,14 +545,13 @@ } } } ); - + $( '.fz-input-tagify[name="feedzy_meta_data[import_post_title]"]:not(.fz-tagify-image)' ).tagify( { mode: 'mix', editTags: false, templates: { tag: function( tagData ) { try{ - console.log(tagData); var decodeTagData = decodeURIComponent(tagData.value); var isEncoded = typeof tagData.value === "string" && decodeTagData !== tagData.value; var tagLabel = tagData.value; @@ -574,7 +573,9 @@ ` } - catch(err){} + catch(err){ + console.error(err); + } } } } );