Add a Suffix or Prefix to WooCommerce Product Costs?

Typically chances are you’ll want so as to add suffix or prefix to your Woocommerce product costs and if you want to know find out how to accomplish that then see these two code snippets right here beneath.

Concentrate that each one the snippets proven beneath needs to be added to your baby theme’s capabilities.php file or higher but, use a snippet supervisor like Code Snippets or WpCodeBox (my favourite). When you’re , then seize WPCodeBox with a pleasant 20% low cost right here (SAVE 20% Coupon WPSH20).

add a Suffix to WooCommerce Product Costs?

First lets add a suffix “per particular person” that’s displayed each on archive and single product pages (see screenshot).

How to add a Suffix to WooCommerce Product Prices?
// Add a Suffix to WooCommerce Product Costs
add_filter( 'woocommerce_get_price_suffix', 'wpsh_woo_price_suffix', 99, 4 );
  
perform wpsh_woo_price_suffix( $html, $product, $worth, $qty ){
    $html .= ' / per particular person';
    return $html;
}

add a Prefix to WooCommerce Product Costs?

Subsequent, let’s add a prefix “Per particular person:” that’s displayed in your archive and single product pages (see screenshot).

How to add a Prefix to WooCommerce Product Prices?
// Add a prefix to WooCommerce product costs
add_filter( 'woocommerce_get_price_html', 'wpsh_woo_price_prefix', 99, 2 );
  
perform wpsh_woo_price_prefix( $worth, $product ){
    $worth = 'Per particular person: ' . $worth;
    return $worth;
}

Helpful Woocommerce hacks

  • Customise Woocommerce Inventory Standing? (17 hacks)

  • show Woocommerce my account tabs horizontally?

  • Show Woocommerce Fee Strategies Conditionally? (14 hacks)

  • Add Customized Endpoints in WooCommerce?

  • show Woocommerce my account tabs horizontally?

  • Show Woocommerce Fee Strategies Conditionally? (14 hacks)

  • Add Customized Endpoints in WooCommerce?

  • Disguise Woocommerce Delivery Strategies (Conditionally) – A Full Information

Leave a Comment

Your email address will not be published. Required fields are marked *

Shopping Cart
Scroll to Top