JQuery (Document)
JQuery (Document)
ready(function($) {
// var feelshopkit_media;
// $('body').on('click', '.comment-form-image .comment-form-image-upload',
function() {
// let container = $(this),
// wrapper = container.closest('.comment-form-image');
// return feelshopkit_uploaded_media(wrapper);
// });
// function feelshopkit_uploaded_media(container) {
// if (feelshopkit_media) {
// feelshopkit_media.open();
// return;
// }
// feelshopkit_media = wp.media({
// title: 'Select or Upload Media',
// button: {
// text: 'Use this media',
// },
// library: {
// type: ['image'],
// },
// multiple: false,
// });
// feelshopkit_media.on('select', function() {
// let attachment =
feelshopkit_media.state().get('selection').first().toJSON(),
// html = feelshopkit_get_image_item(attachment);
// container.append(html);
// });
// feelshopkit_media.open();
// }
// function feelshopkit_get_image_item(image) {
// let html = '';
// let thumbnail = image.url;
// if (
// typeof image.sizes.thumbnail !== 'undefined' &&
// typeof image.sizes.thumbnail.url !== 'undefined'
// ) {
// thumbnail = image.sizes.thumbnail.url;
// }
// html += '<a href="javascript:;" class="comment-form-image-item">';
// html += '<img src="' + thumbnail + '" width="30" />';
// html += '<input type="hidden" name="comment_images[]" value="' +
image.url + '" />';
// html += '</a>';
// return html;
// }
// });
// jQuery(document).ready(function($) {
// var feelshopkit_media;
// feelshopkit_media = wp.media({
// title: 'Select or Upload Media',
// button: {
// text: 'Use this media',
// },
// library: {
// type: ['image'],
// },
// multiple: false,
// });
// feelshopkit_media.on('select', function() {
// let attachment =
feelshopkit_media.state().get('selection').first().toJSON(),
// html = feelshopkit_get_image_item(attachment);
// container.find('.upload-img-susses').append(html);
// });
// feelshopkit_media.open();
// }
// function feelshopkit_get_image_item(image) {
// let thumbnail = image.sizes && image.sizes.thumbnail ?
image.sizes.thumbnail.url : image.url;
// return `
// <div class="comment-form-image-item">
// <img src="${thumbnail}" width="103" />
// <input type="hidden" name="comment_images[]" value="$
{image.url}" />
// <button type="button" class="delete-image-button">
// <svg class="icon-delete-img"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"
fill="none">
// <path d="M13.5 3H11V2.5C11 2.10218 10.842 1.72064 10.5607
1.43934C10.2794 1.15804 9.89782 1 9.5 1H6.5C6.10218 1 5.72064 1.15804 5.43934
1.43934C5.15804 1.72064 5 2.10218 5 2.5V3H2.5C2.36739 3 2.24021 3.05268 2.14645
3.14645C2.05268 3.24021 2 3.36739 2 3.5C2 3.63261 2.05268 3.75979 2.14645
3.85355C2.24021 3.94732 2.36739 4 2.5 4H3V13C3 13.2652 3.10536 13.5196 3.29289
13.7071C3.48043 13.8946 3.73478 14 4 14H12C12.2652 14 12.5196 13.8946 12.7071
13.7071C12.8946 13.5196 13 13.2652 13 13V4H13.5C13.6326 4 13.7598 3.94732 13.8536
3.85355C13.9473 3.75979 14 3.63261 14 3.5C14 3.36739 13.9473 3.24021 13.8536
3.14645C13.7598 3.05268 13.6326 3 13.5 3ZM6 2.5C6 2.36739 6.05268 2.24021 6.14645
2.14645C6.24021 2.05268 6.36739 2 6.5 2H9.5C9.63261 2 9.75979 2.05268 9.85355
2.14645C9.94732 2.24021 10 2.36739 10 2.5V3H6V2.5ZM12 13H4V4H12V13ZM7 6.5V10.5C7
10.6326 6.94732 10.7598 6.85355 10.8536C6.75979 10.9473 6.63261 11 6.5 11C6.36739
11 6.24021 10.9473 6.14645 10.8536C6.05268 10.7598 6 10.6326 6 10.5V6.5C6 6.36739
6.05268 6.24021 6.14645 6.14645C6.24021 6.05268 6.36739 6 6.5 6C6.63261 6 6.75979
6.05268 6.85355 6.14645C6.94732 6.24021 7 6.36739 7 6.5ZM10 6.5V10.5C10 10.6326
9.94732 10.7598 9.85355 10.8536C9.75979 10.9473 9.63261 11 9.5 11C9.36739 11
9.24021 10.9473 9.14645 10.8536C9.05268 10.7598 9 10.6326 9 10.5V6.5C9 6.36739
9.05268 6.24021 9.14645 6.14645C9.24021 6.05268 9.36739 6 9.5 6C9.63261 6 9.75979
6.05268 9.85355 6.14645C9.94732 6.24021 10 6.36739 10 6.5Z" fill="#1B1B1F"/>
// </svg>
// </button>
// </div>
// `;
// }