D
D
DimDim77782019-10-11 10:09:15
WordPress
DimDim7778, 2019-10-11 10:09:15

How to display custom small text after product price for different Woocommerce user roles?

There is a solution that displays the text after the price of the product:

function cw_change_product_price_display( $price ) {
  $price .= ' <span style="color: #8e8181;font-size: 13px;">tax: 11%</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' );

Can you tell me how to display different text for different user roles?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
W
WP Panda, 2019-10-11
@DimDim7778

function cw_change_product_price_display( $price ) {
  
  $user = wp_get_current_user();
  
  if ( in_array( 'subscriber', $user->roles, true ) ) {
    $text = 'text for user subscriber';
  } elseif ( in_array( 'administrator', $user->roles, true ) ) {
    $text = 'text for  user administrator';
  } elseif ( in_array( 'editor', $user->roles, true ) ) {
    $text = 'text for user editor';
  } elseif ( in_array( 'author', $user->roles, true ) ) {
    $text = 'text for user author';
  } elseif ( in_array( 'contributor', $user->roles, true ) ) {
    $text = 'text for user contributor';
  } else {
    $text = 'default text';
  }

  $price .= sprintf( '<span style="color: #8e8181;font-size: 13px;">%s</span>', $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' );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question