Skip to content
A nice title on Top
Add anything Here in the Page Builder
Shop Women
Featured Products
Browse Categories
Latest blog posts
jQuery(document).ready(function($){
$('.variations_form').each(function(){
$(this).wc_variation_form();
});
});
jQuery(function($){
function updateEnquiryForm(){
$('#product_title').val($('.product-title').text());
$('#cf7-product-title').text($('.product-title').text());
var color = $('select[name="attribute_pa_color"]').val();
var size = $('select[name="attribute_pa_size"]').val();
var addon = $('select[name="attribute_pa_addon"]').val();
$('#product_color').val(color);
$('#product_size').val(size);
$('#product_addon').val(addon);
$('#cf7-product-color').text(color);
$('#cf7-product-size').text(size);
$('#cf7-product-addon').text(addon);
}
updateEnquiryForm();
$(document).on('change',
'select[name="attribute_pa_color"], select[name="attribute_pa_size"], select[name="attribute_pa_addon"]',
updateEnquiryForm
);
});