Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 19,276 through 19,300 (of 64,516 total)
  • Author
    Search Results
  • #150132
    Enric
    Participant

    Hello, I’ve made some modifications in bbPress plugin language in catalan

    I reviewed version that is in

    https://translate.wordpress.org/projects/bbpress

    and I think it’s quite outdated but don’t know how to replace it.

    Attach files if anyone might be interested.

    Greetings

    https://www.dropbox.com/s/68umvnnrlgjdm3i/bbpress-ca.mo

    https://www.dropbox.com/s/gjisg023uirwx0b/bbpress-ca.po

    Robkk
    Moderator

    @robin-w

    ok this works great when i tryed it on a default theme.

    but on my custom bbpress theme , i seperated each item in the bbp_get_reply_author_link code and wrapped them in a class so i could better position each item.

    so im using

    <div class=bbp-reply-author-av><?php bbp_reply_author_link( array( 'show_role' => false, 'type' => 'avatar' ) ); ?></div>

    <div class=bbp-reply-author-name><?php bbp_reply_author_link( array( 'show_role' => false, 'type' => 'name' ) ); ?></div>

    <div class=reply-author-role><?php bbp_reply_author_link( array( 'show_role' => true, 'type' => 'role' ) ); ?></div>

    now i have 3 avatars, 3 author links, 3 author roles displaying on 1 reply now.

    how should the code be if i dont want to mess with the args and i just want to display this..

    <div class=reply-author-role><?php bbp_reply_author_link( array( 'show_role' => true, 'type' => 'role' ) ); ?></div>

    if the display user in the reply is only a keymaster and a moderator.

    something kind of like this but where it actually works for my bbpress custom theme.

    <?php 
    $displayed_user = bbp_get_reply_author_id() ;
    $role = bbp_get_user_role( $displayed_user);
    if ( bbp_is_user_keymaster($displayed_user) ||$role == 'bbp_moderator');
    
     echo " <div class=\"reply-author-role\">";
    	
    	echo bbp_reply_author_link( array( 'show_role' => true, 'type' => 'role' ) );
    	
    	echo "</div>";
    	
            else {
    
    }
    ?>
    
    #150107
    Thrift
    Participant

    I am trying to import a rather large VB4 Database into bbpress and out of curiosity I attempted to import using the built in tool that gave me the option to import a VB3 database. It looks like a lot of stuff actually did import correctly but none of the threads have any replies. Their all single posts.

    I understand that the tool wasn’t meant to work for that version in the first place but I can’t seem to find any help with importing VB4 other than a plugin a company has and they quoted me $2,000 because of the size of my community. (Yikes!)

    Anyone have experience with this or can point me in the right direction to getting everything to import correctly and make this migration happen?

    #150105
    Robin W
    Moderator

    bbpress sets the post_type =
    array( bbp_get_forum_post_type(), bbp_get_topic_post_type(), bbp_get_reply_post_type() );

    so if post type = that, then you know you are in a forum search, so you could add a line in your filter to check if $query->post_type equals array( bbp_get_forum_post_type(), bbp_get_topic_post_type(), bbp_get_reply_post_type() ) then just return query?

    #150103

    In reply to: Lastest Activity wrong

    Stephen Edgar
    Keymaster

    Things look correct now, did you fix this?

    If not please give specific links to show what your issue is, you have too many topics and forums for me to guess which one you are talking about.

    Have you run any of the repair tools to see if they fix the issue?

    https://codex.bbpress.org/repair-forums/

    Also, WordPress doesn’t support multiple timzezones for users so this is not included with bbPress for that reason, they appears to be a few plugins that might be able to do this though I haven’t seen any that are compatible with bbPress, but you could have a look yourself.
    https://wordpress.org/plugins/

    #150102
    Stephen Edgar
    Keymaster

    Thanks for the explanation and it’s all good, I’m with you now, the Firmasite theme uses modified templates and thats where the ‘details’ link comes from.

    Kind of a weird issue though, I’d double check that it is not an issue with the Firmasite theme, try switching your theme to Twenty Fourteen with bbPress and NextGEN Gallery enabled and see if the issue persists.

    #150100
    gamalgamalgamal
    Participant

    hello i got error when i install bbpress i can’t Over to Forum ! after install !

    #150099
    Matoca
    Participant

    Stephen,
    Sorry for the poor explanation. On each topic post or reply, next to the author’s name is Details. Clicking that opens a menu of items, more for the moderators, less for non-registered users. This gives me options like the IP number, the post number, the date, Edit, Close, Split, Stick, Merge, Trash, Spam, Reply. I use this, and so do my moderators, to spam posts simply. I also use it to split topics off from the parent. Details would not open yesterday, I wanted to split a topic, but couldn’t.

    Interestingly enough, I also simultaneously had a new problem with a NextGEN HTML5 slideshow playback on the forum pages not loading which I have also been trying to fix (following a NextGEN upgrade.) Today I changed the settings on the slideshow to Flash playback to see if that worked, it did, the slideshow plays.

    And now, the Details are working again in the replies. So this is not a bbPress problem, at least I don’t think so. Something is funky with HTML5, whether it is just NextGEN or something on the server (PHP version?), well I can’t figure that out yet. But trying to load the HTML5 slideshow did mess with the Details display.

    Bingo's latest blood test

    Sorry to bother you,
    my best, Matoca

    #150097
    Robin W
    Moderator

    On individual topics and replies, this is not possible without additional coding, and I’m not aware of any.

    The ‘normal’ way would be

    For participants (we are talking bbpress roles here eg participant, moderator, keymaster etc. rather than wordpress roles editor, author etc., as bbpress restricts to bbpress roles )

    then create a forum, set it’s status to private, and put all topics in there

    For author, editor set these people to be moderators under bbpress, and again set a forum up, but this time set it to hidden, and put topics (and replies) in there

    #150094

    In reply to: Replies per page

    Robkk
    Moderator

    unfortunately that is not the answer I wanted to hear. =P

    its the right answer though.

    check out these other threads

    Regular support topics

    Pagination issue when threaded replies are enabled

    New feature Enable threaded (nested) replies in bbpress 2.4

    Trac topics

    https://bbpress.trac.wordpress.org/ticket/2523

    Here are some quotes from developers of bbpress

    This is the way this feature is currently designed. Hierarchical pagination is quite challenging to tackle; WordPress provides some help with this, but it wasn’t built into our first pass, and no work has gone into improving it since.

    This is actually by design, when reply threading is activated pagination is disabled.

    its possible though , i see this site is running bbpress, has threaded replies and pagination.
    But it all might be custom development.

    The Damn Good Music List #2

    #150091
    joeyaberle
    Participant

    I have entered 10 under the Topics and Replies Per Page in Forum Settings. Yet, my most popular topic is showing a total of 143 replies on one page. Any ideas?

    http://www.20sb.net/forum/topic/your-latest-post-part-1-new/

    Wordpress: 3.9.1
    bbPress: 2.5.4
    BuddyPress: 2.0.1
    BuddyBoss Theme: 3.2.1

    Stephen Edgar
    Keymaster

    @louisedade Thanks, we have a ticket somewhere in our bug tracker Trac that relates extremely close to what you are looking for, it is slated to be looked at for the next release of bbPress 2.6. Basically bbPress and BuddyPress each do their own hidden and private things differently and as a result of that there are a handful of permutations and combinations we need to tweak and fix so they work as expected.

    #150085
    Stephen Edgar
    Keymaster

    Is this what you are referring to?

    Edit: There is another option that works, quite a different approach though, but it does make for quick replies to topics and that is to use the bbPress-Reply-by-Email plugin, setup topic notifications for yourself and reply pretty quickly using your favorite own email client.

    #150084
    Stephen Edgar
    Keymaster

    Make sure you do not have any plugin conflicts by disabling them all except bbPress, also make sure the settings is enabled in bbPress settings.

    #150078

    In reply to: login and registration

    Stephen Edgar
    Keymaster

    Check the URL’s you have in the bbPress login widget, I suspect they are incorrect.

    #150075
    Stephen Edgar
    Keymaster

    Make sure your users are triggering any ‘bad words’ in WordPress comment moderation.

    Moderation and BlackListing

    #150073
    Stephen Edgar
    Keymaster

    If you only want to have a forum on that site install WordPress and bbPress in the domain forums.example.com. If you want to have separate blog and forum you should look at WordPress Multisite using sub domains, your forums would be the 2nd site at forums.example.com and your WordPress blog would be at eaxample.com.

    A good starting point is https://codex.wordpress.org/Create_A_Network

    #150072
    Stephen Edgar
    Keymaster

    You can also post on http://jobs.wordpress.net/ if your looking for a WordPress/ bbPress developer.

    #150069
    Stephen Edgar
    Keymaster

    I am not sure what you mean, bbPress does not include any links titles details

    Could you explain it in more detail please, maybe some screenshots if that will help and/or a link to your forums.

    #150067
    Stephen Edgar
    Keymaster

    This is a theme issue, you should make a copy of your page.php file and rename it bbpress.php in your themes folder.

    #150064
    Stephen Edgar
    Keymaster

    You copy the files to /mytheme/bbpress as stated in the links above.

    You also should change your template as I suggested above, that is the primary cause of your issue I think.

    #150063

    In reply to: Install Language

    Stephen Edgar
    Keymaster
    #150061
    Stephen Edgar
    Keymaster

    Should the admin get an email when a post goes into moderation if I have E-mail me whenever A comment is held for moderation selected in the Settings > Discussion.

    I have no idea 😉

    bbPress is not currently doing this, nor have I got to the this bit in the recent code updates I have written. This is probably something we would want to iterate on further once the changes we have been making as linked above in #2589 and ‘Per forum moderation’ in #459 and how we handle notifications for not just keymasters but also specific forum moderators also.

    #150058

    In reply to: SEO on the Forums

    Stephen Edgar
    Keymaster

    This I’d think (I don’t use Facebook) would be an issue for whatever plugin you are using for sharing to Facebook. Rather than just picking up bbPress topic title it is grabbing more than it should.

    #150057

    In reply to: Mobile display

    Robkk
    Moderator

    are you using a child theme ?? with bbpress.css in your child theme??

    cause what i might think is that you have put bbpress.css into your child theme a long time ago

    but the bbpress plugin updated their css with a repsonsive layout and you just dont have that code in your child themes bbpress.css

    if im right , you can just check out the bbpress plugin and copy styles to your child themes bbpress.css

Viewing 25 results - 19,276 through 19,300 (of 64,516 total)
Skip to toolbar