hello
i want to remove " From $ ~"
how can i remove from
caz i just want to show up only price without From..
please help me
hello
i want to remove " From $ ~"
how can i remove from
caz i just want to show up only price without From..
please help me
anyone help..???
add_filter('woocommerce_get_price_html', 'glam_price_filter_func');
function glam_price_filter_func($price){
$price = str_ireplace('From $ ~','',$price);
return $price;
}
thank you !!
by the way ... where i can put those ?
help me
I believe that would go in your fuctions.php glamj
thank you !
i try but .. still show up ..
what happen ..?
You must log in to post.