bbPress

Simple, Fast, Elegant

bbPress support forums » Troubleshooting

fix for empty threads list on profile page

(1 post)
  • Started 3 months ago by _ck_
  • This topic is not a support question
  1. somewhere between 0.8 and 0.9 the profile page became broken for most themes as "threads started" ($threads) was changed to the more accurate "topics started" ($topics)

    If you don't want to edit your theme profile page, here's a mini-plugin to fix the problem:

    function profile_fix_topics_to_threads() {global $topics, $threads; $threads=$topics;}
    add_action( 'bb_profile.php', 'profile_fix_topics_to_threads');
    Posted 3 months ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.