Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,451 through 4,475 (of 64,450 total)
  • Author
    Search Results
  • #211824
    Robin W
    Moderator

    you can do this by amending a template in bbpress (which I’ll helo you with if you wish, but requires FTP knowledge)

    or you could use

    Private groups

    you would set up 2 groups

    say group 1 teachers
    group 2 students

    in dashboard>settings>bbp private groups>group name settings

    then in

    dashboard>settings>bbp private groups>topic permissions

    you’ll actually see an example of how to do this

    #211821
    fdittmar
    Participant

    Hi,

    Could someone tell me if it’s possible (or even help me with identifying the correct specificity) to stop users from creating new topics in a specific subforum please.
    Running BBP as part of a learning management system where user level/access etc are set based on their student/course status. Been fine for 3 years but now I’d like to provide a slightly stricter UI for some specific courses (which means the Forums/Topics).

    My situation is:

    Forum
    -Subforum
    –Topics
    —Replies
    –Topics
    —Replies
    -Subforum
    –Topics
    —Replies

    My problem is in one of the subforums where the topics created by our teachers are listed but (obviously) the students also see the ‘Create New Topic’ option (which they need elsewhere). I wish to remove that New Topic Creation option there. I can’t do it via the Forum Attributes eg Closed Status because it needs to remain open for other child topics in the same forum.

    I thought that using CSS (display:none) to remove the entire New Topic Entry box would work for me but my inexperience shows through because I can’t work it out even after hours looking online.

    Is it possible to apply such css by adressing it against a specific post id?

    I can remove the new topic box in the browser inspector various ways
    (eg .bbp-reply-form, .bbp-topic-form {display: none;} or with #new-topic-0 etc) but I can’t get it done just for the 1 Subforum/Topic) –
    This does not work: #bbpress-forums #bbp-forum-POSTID #new-topic-0. I also tried variations ul.bbp-parent-forum-21435 etc

    In this example my Forum is post 21435, the topic in it is 21437 and I want to remove the New Topic Entry box on that page (students should only go to 21437 and use Replies there, not create topics)(sorry, actual forums are in the school system so not public).

    Sorry for long post / cry for help. Maybe someone could assist… Thanks

    #211819
    Pete
    Participant

    That worked so, just for the record, the code to be inserted in the loop-search-reply.php template file is:

    
    <div class="bbp-topic-title-meta">
    
    	<?php if ( function_exists( 'bbp_is_forum_group_forum' ) && bbp_is_forum_group_forum( bbp_get_topic_forum_id() ) ) : ?>
    
    		<?php esc_html_e( 'in group forum ', 'bbpress' ); ?>
    
    	<?php else : ?>
    
    		<?php esc_html_e( 'in forum ', 'bbpress' ); ?>
    
    	<?php endif; ?>
    
    	<a href="<?php bbp_forum_permalink( bbp_get_topic_forum_id() ); ?>"><?php bbp_topic_forum_title( bbp_get_topic_forum_id() ); ?></a>
    
    </div><!-- .bbp-topic-title-meta -->
    
    <?php do_action( 'bbp_theme_after_topic_title' ); ?>
    
    #211817
    Pete
    Participant

    OK, so I totally misunderstood what was going on there… The ‘bbpress’ text has nothing to do with the display of the forum name.

    The result I was after is acheived quite simply by using the function bbp_topic_forum_title in place of bop_forum_title in the above code segment (which still needs to be added to the loop-search-reply.php template—and that modified template file placed in the relevant <theme>/bbpress folder—as noted above):

    "><?php bbp_topic_forum_title( bbp_get_topic_forum_id() ); ?>

    Now, as I retype that code segment, I notice that something has gone wrong with the code segment I pasted into the original post. I’m not sure if that was me or not, but the line to be replaced with the above, should have been as follows:

    "><?php bbp_forum_title( bbp_get_topic_forum_id() ); ?>

    I hope that makes sense to anyone who’s interested.

    #211816
    Robin W
    Moderator

    ok, this forums uses bbpress, so can you try and post what would not work on your site here – the above had double paragraphs.

    Robin W
    Moderator

    bbpress just uses WordPress accounts.

    so if you want your existing users to use bbpress, then set the default role in dashboard>forums and the next time they log in, they will get this access.

    megatill
    Participant

    Hi – I have a WordPress site that has been operational for 5 years.
    I wanted to add a Discussion Forum using bbPress, and I have been successful in installing the bbPress plug-in.
    Using the bbPress Shortcode Codex, I wanted to create a requirement for people to log into my new Discussion Forum using
    [bbp-register] – Display the register screen.
    [bbp-lost-pass] – Display the lost password screen.

    However, when I test these two options, it appears that these two options actually create a new WordPress account – with no connection to my existing WordPress site at all. When I test the Register facility, a new page opens with the WordPress create account box (create username and password).

    What is wrong with the Shortcode usage, please?

    WordPress 5.4.1 running Enterprise theme.

    Who and What I Find – About this site


    bbPress Version 2.6.5

    It sounds like you no longer have the Keymaster forum role.

    Be sure to update to the latest version of bbPress, and check your Users for any other Keymaster accounts that you don’t recognize.

    #211799
    Robin W
    Moderator

    I can see that – I’ve logged a trac ticket for this 7
    https://bbpress.trac.wordpress.org/ticket/3379

    #211798
    Pete
    Participant

    Hi,

    I’m trying to add some detail to search results associated with replies to topics. By default, it would seem that if a search finds a hit in a particular topic post, it includes the name of the topic and the relevant forum in the header for the particular search result:
    Default Topic Result Header
    In contrast, a hit on a reply to a particular topic does not include any topic or forum information: Default Reply Result Header

    I thought I might be able to solve my problem by modifying the loop-search-reply.php template to include what looked like it might be the relevant code from the loop-search-topic.php template:

    
    <div class="bbp-topic-title-meta">
    
    	<?php if ( function_exists( 'bbp_is_forum_group_forum' ) && bbp_is_forum_group_forum( bbp_get_topic_forum_id() ) ) : ?>
    
    		<?php esc_html_e( 'in group forum ', 'bbpress' ); ?>
    
    	<?php else : ?>
    
    		<?php esc_html_e( 'in forum ', 'bbpress' ); ?>
    
    	<?php endif; ?>
    
    	<a>"><?php bbp_forum_title( bbp_get_topic_forum_id() ); ?></a>
    
    </div><!-- .bbp-topic-title-meta -->
    
    <?php do_action( 'bbp_theme_after_topic_title' ); ?>
    

    but it seems that was a little naive of me. This block of code certainly includes what could be the required information:Modified Reply Result Header but what I thought would be inserted as the forum name turns out to be the topic name.

    Looking at the above code, I can see why this might be—the relevant text, ‘bbpress’, in the code block above appears to be just some placeholder text, and is the same placeholder text used to reference the topic name. I had thought that the text replacement might be a little more context sensitive than it appears to be.

    So my question is, can anyone tell me how that text (‘bbpress’ in the above code segment, which is taken directly from the default loop-search-topic.php template) gets replaced, or more specifically I guess, can anyone tell me where to inject a function or the like to set this or some other piece of placeholder text (I appreciate that it may need to be different to the placeholder text being used for the topic name) to the relevant forum name?

    Thanks

    #211788

    Topic views are not standard in bbPress.

    By default, the problem with Views is they trigger database writes on pages that should only be performing database reads.

    We’ve considered ways of circumventing this, but have never seriously attempted to build it.

    Is there a simple fix for a non-programmer type guy?

    You could try installing: https://wordpress.org/plugins/gd-bbpress-tools/

    I forget if it offers it, but it does so much other stuff that maybe it will tide you over? 😁

    #211785
    Robin W
    Moderator

    so with just bbpress and buddypress you get this error ?

    #211779
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #211778
    devansh1995
    Participant

    Hello Team,

    My wp admin is showing this error Undefined variable:

    Notice: Undefined variable: topic_id in /home3/castudyw/public_html/wp-content/plugins/bbpress/includes/replies/template.php on line 461

    Notice: Undefined variable: topic_id in /home3/castudyw/public_html/wp-content/plugins/bbpress/includes/replies/template.php on line 467

    Please help me how to resolve it.

    #211777
    Robin W
    Moderator

    I can’t see one that works with bbpress currently – I’ll try and take a look over the weekend if I get a chance

    tumptyteapot
    Participant

    WordPress Version 5.4.1
    bbPress Version 2.6.5

    Mizan Therapy

    I have no links to Forum in the dashboard. I have no forum options for users.
    I can see the forums exist from the front end but I cannot get to them from the admin

    I have disabled all plugins apart from bbPress and tried another theme. The problem still exists.
    I have installed the User Role Editor but no options for forums exist there either.
    I have cleared caches on the site and in the browser.

    https://snipboard.io/C4xL6M.jpg

    #211766
    lisabyrde
    Participant

    I know the Yoast SEO has many problems with BBpress. I wrote a small plugin to help Yoast SEO working better with BBPress.

    This plugin improved the following problem with yoast wordpress seo in bbpress:
    1, Canonical lost on single forum
    2, Canonical lost on single topic page
    3, Canonical lost on user profile page
    4, Canonical lost on topic tag page
    5, Meta title incorrect on user profile page
    6, Meta title incorrect on topic tag
    7, Meta description lost on topic archive
    8, Meta description lost on user profile page
    9, Meta description lost topic tag page
    10, Meta description lost on single topic page
    11, Meta description lost on single forum page

    I know this is an old thread but if I install this plugin, would it automatically pull all the meta data (meta title & description) or would I have to manually write the titles and descriptions for each page?

    TBH, right now I don’t have the budget to hire an SEO consultant. Plus, I’ve had bad experiences with them before. So I’d prefer if this is something that I could resolve on my own.

    Let me know.

    Thanks.

    #211765
    MiltonBC
    Participant

    Hi, I just installed bbpress and have the latest version of wordpress (5.4). I see “voices” and “posts” but no “views”.

    Is this standard? I would like to see the number of views by topic.

    Is there a simple fix for a non-programmer type guy?

    #211761

    In reply to: Database broken?

    eroesi
    Participant

    Props to Robin, he helped me to fix this error, which was not bbPress-related.
    Thanks again!

    #211758

    Hey @gathero,

    Sorry for this inconvenience. You definitely discovered a situation that the bbPress team has not really considered. It should not be possible to delete the last remaining Keymaster, just like you cannot delete the last remaining Administrator.

    I’ll make sure this gets addressed in a future release of bbPress.

    MySQL 8 removing support for zero dates is the problem.

    WordPress is incompatible with NO_ZERO_DATE mode, but it being dropped entirely means these errors are going to pop up.

    See: https://bbpress.trac.wordpress.org/ticket/3354

    Going to patch and fix for 2.6.6, likely for a release next week.

    #211739
    Robin W
    Moderator

    sorry this is a bbpress forum – this should get you started with bbpress

    Step by step guide to setting up a bbPress forum – Part 1

    I know nothing of buddypress, just directing you to their site

    #211737

    Topic: bbPress 2.6.5

    in forum Installation
    Ben
    Participant

    I upgraded to 2.6.5 . In WordPress menu Settings->Forums, I checked Super Moderators(Allow Moderators and Keymasters to edit users) .I tested setting the user role Editor / Keymaster. In WordPress menu can’t look the Users menu.

    How can i do ?

    Thx.

    #211734
    gathero
    Participant

    Hello, so now “Keymaster” is back in the dropdown list but if modify the bbpress role to it nothing happens (Administrator is set). Same thing if i create a new user selecting “Keymaster” role, Administrator is set.

    cafermcc
    Participant

    I have set up the bbpress forum and have Admins created through my WordPress site. When other admins try to access the Forum settings via Tools and then Plugins they do not see the options for bbpress (Forum, Replies, Topics). Help with where to update settings so others besides myself can access these settings!

Viewing 25 results - 4,451 through 4,475 (of 64,450 total)
Skip to toolbar