Sorry to pile on, but I too was a user of the template tag. Just thought I’d mention it so you have an idea of how many people used this feature!
It’s a great plugin, so I’ll be looking forward to the updated version. Thanks for your hard work.
No worries, glad to have helped!
Somebody at the plugin author’s website worked out a temporary fix until an updated version is released.
In more-fields-object.php, line 138, change:
$scripts->registered['post']->src = $src;
to:
$scripts->add_data['post']->src = $src;
Hope this helps anybody trying to get their tags to work!
I fixed it by changing line 126:
$template_data = implode( '', file( WP_CONTENT_DIR . $template ) );
to:
$template_data = implode( '', file( $template ) );
Hope this helps!