Linux 软件免费装
Banner图

WooCommerce RRP

开发者 Brad Davis
更新时间 2022年2月15日 11:54
PHP版本: 4.0 及以上
WordPress版本: 5.9.0
版权: GPLv3 or later
版权网址: 版权信息

标签

admin woocommerce wp-admin woocommerce-price wc-admin woocommerce-admin woocommerce-product-settings wordpress-admin

下载

1.7.6 1.2 1.3 1.4 1.5 1.7.4 1.7.5 1.6 1.7.0 1.7.2 1.7.3

详情介绍:

WooCommerce RRP allows a users to add text before the regular price and sale price of a product from within WooCommerce General settings. 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, please see the FAQ for an example. If you have suggestions for new features, please add your idea in the "Support" area for this plugin. If WooCommerce RRP has made your life a little easier, please leave a positive review in the "Reviews" area for this plugin. Requires WooCommerce to be installed.

安装:

  1. Upload WooCommerce RRP to the /wp-content/plugins/ directory
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. Go to WooCommerce > Settings and add your text to the input areas in "Currency Options". See Screenshots for a visual explanation.

屏幕截图:

  • 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.

升级注意事项:

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.

常见问题:

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: 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' );

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: 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' );

Can you provide a list of filters that are available and a description of what they control?

Sure, there are two filters available for you to use:

  • woo_rrp_before_price - Controls the text that is displayed before the regular price of a product.
  • woo_rrp_before_sale_price - Controls the text that is displayed before the sale price of a product.

Enabling the "Show Text On Archives" messes up the archive display, can you please fix this?

You will need to tidy this up using a little CSS styling.

There isn't any translations of this plugin, can I provide you a translation in my local language to include?

更新日志:

1.7.6 1.7.5 1.7.4 1.7.3 1.7.2 1.7.1 1.7.0 1.6 1.5 1.4 1.3 1.2 1.1 1.0