06/24/2016 at 9:20 am
#380500
Keymaster
@ Diego van der Heijden
Right, shortcodes do work in the bio and notes fields but not the text custom fields. I suspect you’re following text custom field tutorial? If you are then change this line of code:
if ( ! empty( $text ) ) echo '<p>' . esc_html( $text ) . '</p>';
to this:
if ( ! empty( $text ) ) echo '<p>' . do_shortcode( esc_html( $text ) ). '</p>';
That should do the trick.
Hope that helps. Let me know.
ps. I’d be interested in seeing the result. Which reviews plugin are you using?
