I upgraded to 1.0.3 and it didn’t solve the issue. I also deactivated W3 Total Cache entirely and that still didn’t work.
We’re using a customized template of Kakumei. The link’s template tag was:
<?php post_author_title_link(); ?>
I edited that so that the link appears as “Member Profile” for now as we don’t have any inactive users anyway and only a few moderators and keymasters who don’t really need to be labeled as such.
Here’s what I used to do that:
<a href="<?php echo esc_attr( get_user_profile_link( get_post_author_id( $post_id ) ) ); ?>">Member Profile</a>
I upgraded to 1.0.3 and it didn’t solve the issue. I also deactivated W3 Total Cache entirely and that still didn’t work.
We’re using a customized template of Kakumei. The link’s template tag was:
<?php post_author_title_link(); ?>
I edited that so that the link appears as “Member Profile” for now as we don’t have any inactive users anyway and only a few moderators and keymasters who don’t really need to be labeled as such.
Here’s what I used to do that:
<a href="<?php echo esc_attr( get_user_profile_link( get_post_author_id( $post_id ) ) ); ?>">Member Profile</a>