There is no call to execute shortcodes on the message content. You could hack it in if you want this behavior. I am never going to publish another update to this plugin, so you don’t have to worry about an update crushing your customizations.
http://codex.ww.wp.xz.cn/Function_Reference/do_shortcode
Hi Corey,
Thanks for getting back to me although you don’t support this any more 🙁
So I just need to add the code.
<?php echo do_shortcode( $content ) ?>
Where should I add it?
Appreciated!
There’s no reason for me to update the plugin. Nearly every user customizes it like you are about to do yourself, and updates break those changes.
Change line 43:
return $content . do_shortcode( stripslashes( $msg ));
Thanks for helping out Corey I appreciate it.
I added the code but the short code is just displaying as text at the bottom of the post.
Any ideas why?
Cheers
Ok I got it working, its just one of the plugins shortcode doesn’t work!
Thanks Corey.
Hi Corey
Thanks. Let me confirm:
I need to add the following to your plugin?
<?php echo do_shortcode( $content ) ?>
and
Change line 43:
return $content . do_shortcode( stripslashes( $msg ));
The only change required is line 43.