Skip to:
Content
Pages
Categories
Search
Top
Bottom

replies to topics appear empty

Viewing 4 replies - 1 through 4 (of 4 total)
  • @robkk

    Moderator

    @melanie-bund

    FIx that annoying dialog saying

    you must be logged in to chat

    It never stays closed no matter how many times I close it, and it really doesn’t encourage new users to want to create an account for the site.

    Try some troubleshooting , see if it is a plugin or theme issue.

    Troubleshooting

    @melanie-bund

    Participant

    Hi Robkk – on the test site i have deactivated every plugin (so it looks odd) and i still have the same problem – replies empty, am using twentytwelve theme so should not be a theme problem.
    http://photohunters.org/photohunters-test/topic/sony-alpha-dslr-a100/#post-348
    Tha only thing i have added to fuctions.php is to hide author links and profile and avatar

    add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options');
    
    add_filter( 'bbp_get_author_link', 'remove_author_links', 10, 2);
    add_filter( 'bbp_get_reply_author_link', 'remove_author_links', 10, 2);
    add_filter( 'bbp_get_topic_author_link', 'remove_author_links', 10, 2);
    function remove_author_links($author_link, $args) {
    	$author_link = preg_replace(array('{<a[^>]*>}','{}'), array(" "), $author_link);
    	return $author_link;
     }
     
    
    add_filter ('bbp_before_get_author_link_parse_args' , 'rew_remove_avatar' ) ;
    add_filter ('bbp_before_get_reply_author_link_parse_args' , 'rew_remove_avatar' ) ;
    add_filter ('bbp_before_get_topic_author_link_parse_args' , 'rew_remove_avatar' ) ;
    function rew_remove_avatar ($args) {
    	$args['type'] = 'name' ;
    	return $args ;
    }

    Any ideas? Melanie
    p.s. pop gone on main site, trying to sort out the problem…

    @robkk

    Moderator

    Its some CSS in your theme something is hiding the .reply class probably in your WordPress comments and it is affecting bbPress replies.

    Adding this CSS should fix it.

    #bbpress-forums .reply {
      display: block
    }

    @melanie-bund

    Participant

    THANKS SOOO much Robkk – it worked1 you are an angel
    Thanks again
    Melanie

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.
Skip to toolbar