Search

Contact Us

This field is for validation purposes and should be left unchanged.
Name(Required)
Address
Email(Required)

Product Information

If you are contacting us regarding a specific product, please enter product information below:
Find it printed or embossed on packages or ends of cans. It will be a series of letters, numbers or both. It may include a date. Please include all characters.
MM slash DD slash YYYY

Purchase Information

Where did you purchase this product?
Is it your first time using this product?
Max. file size: 100 MB.
Max. file size: 100 MB.
Please let us know what's on your mind. Have a question for us? Ask away.

Fill out my online form.
// Add thumbnail column to product admin list add_filter('manage_product_posts_columns', function($columns) { $new = ['cb' => $columns['cb'], 'thumbnail' => 'Image']; return array_merge($new, $columns); }); add_action('manage_product_posts_custom_column', function($column, $post_id) { if ($column === 'thumbnail') { echo get_the_post_thumbnail($post_id, [60, 60]); } }, 10, 2);