Product Filter

Vintage Toys

Showing all 9 results

Sort by:
Sort by:
Sort by:
View:
Back to top
jQuery(document).ready(function($) { $('.wcfm_products_manage_form').on('submit', function(e) { var action = $(this).attr('action'); if(action.indexOf('wcfm-edit-product') > -1) { var product_id = $(this).find('#product_id').val(); if(product_id) { $.ajax({ url: wcfm_params.ajax_url, type: 'POST', data: { action: 'wcfm_custom_duplicate_product', product_id: product_id }, success: function(response) { if(response.success) { window.location.href = response.data.redirect; } else { alert(response.data.message); } } }); e.preventDefault(); } } }); });