Peanut Butter Bones

£0.60

Mak’s Patch Veggie Treats are made with Sweet Potato & Peas as their core ingredients, other flavours such as peanut butter, spinach and apple are added during the process of making these.

 

Composition

Sweet Potato Flour, Pea Flour, Vegetable Glycerine, Real Peanut Butter 8% (does not contain xylitol), Calcium Carbonate, Dried Brewers Yeast, Vegetable Oil.

Additives Potassium Sorbate 0.1% 

Analysis Moisture 13%, Crude Ash 6.2%, Crude Fibre 1.6%, Protein 3.9%, Fat Content 2.1%.

In stock

delivery  Order by 12pm for next day delivery (Mon-Fri). Orders placed after 12pm Thurs will arrive within the following week.

SKU: 6546465468 Categories: ,

You may also like...

// Add a custom column for Tax Class add_filter('manage_edit-product_columns', 'rr_add_tax_class_column'); function rr_add_tax_class_column($columns) { $columns['rr_tax_class'] = 'Tax Class'; return $columns; } // Populate the Tax Class column add_action('manage_product_posts_custom_column', 'rr_show_tax_class_column', 10, 2); function rr_show_tax_class_column($column, $post_id) { if ($column === 'rr_tax_class') { $product = wc_get_product($post_id); $tax_class = $product->get_tax_class(); echo $tax_class ? esc_html($tax_class) : 'standard'; } }