Download WooCommerce RRP
This plugin has been submitted to wordpress.org, download – WooCommerce RRP.
Overview
WooCommerce RRP is a plugin that works with WooCommerce. WooCommerce RRP allows a users to add text before the regular price and sale price of a product from within the WooCommerce General settings UI. You can also select to have this text displayed on archive templates by simply clicking a select box.
If you would like to change the display text for a certain product, you can use the WordPress add filter function. See the examples below the screenshots.
Screenshots

Entering text into the “Product Price Text” will display before the regular price for the product.

Here you can see the arrow pointing to the text displayed that you entered in the “Product Price Text” field.

Entering text into the “Sale Price Text” will display before the sale price for the product.

Here you can see the arrow pointing to the text displayed that you entered in the “Sale Price Text” field.

Selecting the “Show Text On Archives” will display the text entered in the “Product Price Text” and “Sale Price Text” fields on archive templates.

Here you can see the arrows pointing to the text entered in “Product Price Text” and “Sale Price Text” on an archive.
What if I want to change the “Product Price Text” for a certain product?
This can be done using the built in WordPress add filter function. For example, if we had a product with an id of 96 and we wanted to change the text of the “Product Price Text” field to “Your new Product Price Text, the function would like this:
[php]
function change_before_regular_price( $woo_rrp_before_price ) {
global $post;
if ( ’96’ == $post->ID ) :
return ‘Your new Product Price Text’;
else :
return $woo_rrp_before_price;
endif;
}
add_filter( ‘woo_rrp_before_price’, ‘change_before_regular_price’ );
[/php]
What if I want to change the “Sale Price Text” for a certain product?
This can be done using the built in WordPress add filter function. For example, if we had a product with an id of 96 and we wanted to change the text of the “Sale Price Text” field to “Your new Sale Price Text, the function would like this:
[php]
function change_before_sale_price( $woo_rrp_before_sale_price ) {
global $post;
if ( ’96’ == $post->ID ) :
return ‘Your new Sale Price Text’;
else :
return $woo_rrp_before_sale_price;
endif;
}
add_filter( ‘woo_rrp_before_sale_price’, ‘change_before_sale_price’ );
[/php]
There isn’t any translations of this plugin, can I provide you a translation in my local language to include?
Absolutely, please get in contact.
Changelog
1.0 – Original commit and released to the world
Upgrade Notice
1.0 – You should use WooCommerce RRP 1.0 for the convenience of having the ability to add text before the regular and sale price from the WooCommerce Setting UI.
George Wragg says:
I am relatively new to IT.
However, I have a WP site with the woocommerce plugin activated. I am running an affiliate site with the external/affiliate option in use. I have installed WooCommerce RRP plugin and entered “From:” in the product price text tab but find that either with or without “show text on archives” ticked, that the word “From” does appear.Can you help?
WP is up to date and Divi theme is in use.
Bradley says:
This could be a theme related issue.