Posts

Showing posts with the label code-snippets

Display discount on product page Woocommerce

Image
Clash Royale CLAN TAG #URR8PPP Display discount on product page Woocommerce I had this code in function.php of my theme to display discount on product page Woocommerce - it dosent work anymore.....! This snippet doesn't work anymore on WooCommerce version 3.0+. How can I fix that.......? Here is that code: // for Bulk discounts add_filter( 'woocommerce_variable_price_html', 'webexpert_apply_to_productpage', 10, 2 ); add_filter( 'woocommerce_get_price_html', 'webexpert_apply_to_productpage', 10, 2 ); function webexpert_apply_to_productpage( $price, $product ) { $original_product=$product; $q = array( 0.0 ); $d = array( 0.0 ); $quantity=1; $configurer = get_page_by_title( 'wc_bulk_discount_configurer', OBJECT, 'product' ); if ( $configurer && $configurer->ID && $configurer->post_status == 'private' ) { $product_id = $configurer->ID; } if ($product instanceof WC_Product_Variation) { $product_id = ...