This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_wc_custom_get_price_html( $price, $product ) { | |
if ( $product->get_price() == 0 ) { | |
if ( $product->is_on_sale() && $product->get_regular_price() ) { | |
$regular_price = wc_get_price_to_display( $product, array( 'qty' => 1, 'price' => $product->get_regular_price() ) ); | |
$price = wc_format_price_range( $regular_price, __( 'Free!', 'woocommerce' ) ); | |
} else { | |
$price = '<span class="amount">' . __( 'Free!', 'woocommerce' ) . '</span>'; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'wc_anti_fraud_rules', 'wc_remove_antifraud_rules'); | |
/** | |
* Remove unwanted anti-fraud rules | |
* | |
* @return array | |
*/ | |
function wc_remove_antifraud_rules( $rules ) { | |
foreach ( $rules as $key => $rule ) { |