Terms and Conditions
Last updated:
Please read these Terms of Use ("Terms", "Terms…
Privacy Policy
Last updated:
("us", "we", or "our") operates the website…
function kriesi_backlink($frontpage_only = false){ $link = " - Website by Web and Print Design"; return $link; } // Override WooCommerce Composite Products to always show the full retail price add_filter('woocommerce_composite_product_price', 'override_composite_product_sale_price', 10, 3); function override_composite_product_sale_price($price, $component, $composite_product) { // Get the regular price of the component product $regular_price = get_post_meta($component['data']->get_id(), '_regular_price', true); // If there's a regular price, use it as the price for the composite product if ($regular_price) { $price = wc_price($regular_price); } return $price; } ?>