Support

Account

Home Forums Front-end Issues Price field as WooCommerce price Reply To: Price field as WooCommerce price

  • 
    add_filter( 'woocommerce_product_get_price', 'yl_get_dish_price', 20, 2 );
    add_filter( 'woocommerce_product_get_regular_price', 'yl_get_dish_price', 20, 2 );
    function yl_get_dish_price( $price, $product ) {
        if ( $product->is_type('dish') ) {
            $price = get_field( 'price', $product->get_id() );
        }
        return $price;
    }