I'm writing a plugin for a wordpress site using a page template using WP Types plugin.
My plugin adds a shortcode tag.
Shortcode tags inside 'the_content' get processed without problem.
But this page template echoes types_render_field(...) WP Types function which gets and returns content containing shortcode tags retrieved from the database using get_post_custom($postid) wordpress core function call.
I want to process these shortcode tags without modifying the template or WP Types plugin, just using my plugin code.
Is that possible?
types_render_field?