Thanks for sending over your login info Agent8,
I’ve taken a look and can see that it’s actually an issue with the implementation in your custom theme rather than an error with the plugin itself.
Looking at your author.php
template, the author description is not picking up the added content formatting because you are pulling it directly from the get_userdata()
function, not the get_the_author_meta('description')
function. The added content formatting filters are only applied to output from get_the_author_meta()
or the_author_meta()
.
If you may the following change in your author.php
template the issue is resolved.
Problematic:
<div id="author_left">
<p><?php echo $curauth->user_description; ?></p>
</div>
Working:
<div id="author_left">
<p><?php the_author_meta( 'description', $curauth->ID ); ?></p>
</div>
Thanks for using the plugin, if you have a minute can you add a rating and submit that the plugin does indeed work for the version of WordPress that your are using.
Thanks!