Answers for "add text next to price woocommerce"

0

add text next to price woocommerce

function cw_change_product_price_display( $price ) {
    $price .= ' TEXT';
    return $price;
}
add_filter( 'woocommerce_get_price_html', 'cw_change_product_price_display' );
add_filter( 'woocommerce_cart_item_price', 'cw_change_product_price_display' );
Posted by: Guest on June-18-2021

Code answers related to "add text next to price woocommerce"

Browse Popular Code Answers by Language