Skip to content
Showing all 10 results
-
Water Soluble Essential Oil
Water Base Azone
0.32$ – 17.46$Price range: 0.32$ through 17.46$
-
-
-
-
-
-
Water Soluble Essential Oil
Water Base Limonene
0.31$ – 16.49$Price range: 0.31$ through 16.49$
-
Water Soluble Essential Oil
Water Base Menthol
0.34$ – 19.40$Price range: 0.34$ through 19.40$
-
-
Water Soluble Essential Oil
Water Base VBE
0.73$ – 58.21$Price range: 0.73$ through 58.21$
jQuery(function($) {
// ===== MOBILE MENU TOGGLE FIX =====
$(document).on('click touchend', '#mega-menu-wrap-primary .mega-menu-toggle button.mega-toggle-animated', function(e) {
e.preventDefault();
e.stopPropagation();
var $toggle = $(this).closest('.mega-menu-toggle');
var $wrap = $(this).closest('.mega-menu-wrap');
var $menu = $wrap.find('#mega-menu-primary');
var $close = $wrap.find('button.mega-close');
if ($toggle.hasClass('mega-menu-open')) {
$toggle.removeClass('mega-menu-open');
$menu.css({left: '-300px', display: 'none'});
$close.css({visibility: 'hidden', opacity: 0});
$('body').css('overflow', '');
} else {
$toggle.addClass('mega-menu-open');
$menu.css({left: '0', display: 'flex'});
$close.css({visibility: 'visible', opacity: 1});
$('body').css('overflow', 'hidden');
}
});
$(document).on('click touchend', '#mega-menu-wrap-primary button.mega-close', function(e) {
e.preventDefault();
var $wrap = $(this).closest('.mega-menu-wrap');
$wrap.find('.mega-menu-toggle').removeClass('mega-menu-open');
$wrap.find('#mega-menu-primary').css({left: '-300px', display: 'none'});
$(this).css({visibility: 'hidden', opacity: 0});
$('body').css('overflow', '');
});
// ===== PRODUCT PAGE =====
if (!$('body').hasClass('single-product')) return;
var price = 0;
$('.quantity input.qty').after('Enter quantity to calculate total ↓');
$('.single_add_to_cart_button').before('Estimated Total (EXW)
$0.00 ');
$(document).on('found_variation', '.variations_form', function(e, v) { price = parseFloat(v.display_price) || 0; ut(); });
$(document).on('reset_data', '.variations_form', function() { price = 0; $('#ws-total').hide(); $('.ws-qty-hint').show(); });
$('input.qty').on('change input keyup', ut);
function ut() { var q = parseInt($('input.qty').val()) || 0; if (price > 0 && q > 0) { $('#ws-total-price').text('$' + (price * q).toFixed(2)); $('#ws-total').show(); $('.ws-qty-hint').hide(); } else if (q === 0) { $('#ws-total').hide(); $('.ws-qty-hint').show(); } }
});