Hi
i need to create shortcode for woocommerce "product short description"
i find this on forum
function get_woo_field_func( $atts ) { extract( shortcode_atts( array( 'woo_field' => '', ), $atts ) ); return $price = get_post_meta( get_the_ID(), $woo_field);; } add_shortcode( 'get_woo_field', 'get_woo_field_func' );
[get_woo_field woo_field = '_regular_price']
how to deal with "product short description"
Guy