modify product price

Modify the price of a product.

function modify_product_price($html, $original_price, $discounted_price){
	$html .= ' + shipping from $9.50';	
	return $html;
}

add_filter( 'advanced_woo_discount_rules_strikeout_price_html', 'modify_product_price', 10, 3);