VIEW PRODUCT CATEGORIES

Click To Filter Products

Category

Year

Denomination

Strike Type

Mint Location

Grading Service

Grade

Metal Type

Type

Gemstone

Base Metal

Metal Purity

Ring Size

Total Carat

Brand

Gender

Watch Case Size

Artist

Size

Price

View cart “10K Yellow Gold Necklace with Star Diamond Pendant 0.20ct” has been added to your cart.

Showing the single result

// Enqueue the script for Quick Edit function enqueue_quick_edit_script($hook) { if ($hook == 'edit.php') { wp_enqueue_script('quick-edit-custom', get_template_directory_uri() . '/js/quick-edit-custom.js', array('jquery'), '', true); } } add_action('admin_enqueue_scripts', 'enqueue_quick_edit_script'); // JavaScript file (quick-edit-custom.js) jQuery(function($){ $('#the-list').on('click', '.editinline', function(){ var post_id = $(this).closest('tr').attr('id'); var $inline_data = $('#inline_' + post_id); var out_of_stock_note = $inline_data.find('.out_of_stock_note').text(); $('input[name="out_of_stock_note"]').val(out_of_stock_note); }); });