Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Remove un-planned icons (WordPress) Reply To: Remove un-planned icons (WordPress)

#190605
misscosmic
Participant

This is the snippet btw:
[code]
// Price from

// Use WC 2.0 variable price format
add_filter( ‘woocommerce_variable_sale_price_html’, ‘wc_wc20_variation_price_format’, 10, 2 );
add_filter( ‘woocommerce_variable_price_html’, ‘wc_wc20_variation_price_format’, 10, 2 );
function wc_wc20_variation_price_format( $price, $product ) {
$min_price = $product->get_variation_price( ‘min’, true );
$price = sprintf( __( ‘à partir: %1$s’, ‘woocommerce’ ), wc_price( $min_price ) );
return $price;
}
[/code]