Skip to content

Instantly share code, notes, and snippets.

@kloon
Created September 17, 2013 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kloon/e0153ba272777f1559b8 to your computer and use it in GitHub Desktop.
Save kloon/e0153ba272777f1559b8 to your computer and use it in GitHub Desktop.
RRP Tutorial - Define Product Field
add_action( 'woocommerce_product_options_pricing', 'wc_rrp_product_field' );
function wc_rrp_product_field() {
woocommerce_wp_text_input( array( 'id' => 'rrp_price', 'class' => 'wc_input_price short', 'label' => __( 'RRP', 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol() . ')' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment