// source --> https://gst-marine.eu/wp-content/plugins/addify-product-labels-and-stickers/assets/js/afwcbm-front.js?ver=1.0.0 
jQuery( document ).ready(function($){

	jQuery(".afwcbm_product_page_style").prependTo(".woocommerce-product-gallery__image");
	if ($('input[name=checkbox_val]').val() == 'on') {
		$('.woocommerce-product-gallery__image').addClass('af_bm_woocomm_overflow');
	}	


	//woodmart theme compatiblity
	if(af_wcbm_front_data.current_theme === 'woodmart-2' || af_wcbm_front_data.current_theme === 'woodmart'){
		setTimeout(function(){
			$('.afwcbm_product_thumbnail').css('position', 'static');
			$('.product-grid-item').each(function () {
				var thumbnail = $(this).find('.afwcbm_product_thumbnail');
				var imageLink = $(this).find('.product-image-link');
		
				if (thumbnail.length && imageLink.length) {
					thumbnail.prependTo(imageLink);
				}
			},10);
		})
	}
	else if(af_wcbm_front_data.current_theme === 'Avada'){
		$('.afwcbm_product_thumbnail').css('position', 'static');

		$('.fusion-product-wrapper').each(function () {
			var thumbnail = $(this).find('.afwcbm_product_thumbnail');
			var imageLink = $(this).find('.featured-image');
	
			if (thumbnail.length && imageLink.length) {
				thumbnail.prependTo(imageLink);
			}
		},10);
	}


	

});