Custom text after price
-
Hi,
I’m using this code:
function cw_change_product_price_display( $price ) { $price .= ' <span id="tooltips">incl. VAT</span>'; return $price; } add_filter( 'woocommerce_get_price_html', 'cw_change_product_price_display' ); add_filter( 'woocommerce_cart_item_price', 'cw_change_product_price_display' );
To display custom text after the price, how can I make it visible just for guest users?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Custom text after price’ is closed to new replies.