Hi Dan Keenan,
If you would like to display a 3rd party shortcode in a custom field, you’ll have to apply the script below into your Website. Add this code in via plugin https://wordpress.org/plugins/code-snippets/ OR by adding code in your theme functions.php .
function my_enable_shortcodes_in_cf($html,$location,$cf){
// this line will enable it only for a text input with html var 'textx'
if(isset($cf['htmlvar_name']) && $cf['htmlvar_name']=='geodir_textx'){
$html = do_shortcode( $html );
}
return $html;
}
add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3);
Furthermore, if you would like to use shortcodes in a “Textarea”, replace the code as shown below.
Replace
add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3);
With this
add_filter('geodir_custom_field_output_textarea','my_enable_shortcodes_in_cf',15,3);
Thanks!