Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 10,176 through 10,200 (of 64,474 total)
  • Author
    Search Results
  • #178772

    In reply to: Quote

    ico33
    Participant

    I repost some questions

    1) is there a way to add a sort of “code” somewhere, to have the QUOTE in bbpress posts?

    2) If not, is there a plugin that somebody knows? Obviously, if possible, I would prefer some code to avoid another plugin

    3) Anybody knows if the function “quote” will be updated in a future version of bbpress? I think I read it some years ago, but it didn’t still arrive.

    Thank you for helping

    SmileWP
    Participant

    Hello,

    PRESTORY

    I use BBPress on subsites, in a multisite install.

    These subsites are unique, separate sites, and should *NOT* have access to each other’s sites–especially to BBPress member directories!

    ISSUE

    BBPress Members page shows members from other subsites!

    These demonstrates that while each subsite is separate and unique the BBPress content is not separated nor unique and is instead shared across the entier multisite (nightmare).

    TBD – This *may* also include subscription content; where a BBPress subscriber on unique and separate Subsite A, may subscribe to the Subsite A BBPress content but then also receive BBPress subscription content from other ostensibly unique and separate subsites (B, C, D…). TBD

    QUESTION

    How can I have unique instances of BBPress (content, subscriptions, memmbers–everything unique) on unique and separate subsites, within a multisite installation?

    Thank you in advance for your specific help keeping separate sites separate.

    Thank you,

    Chris

    #178768
    treeflips
    Participant

    Most likely not noticeably, but there are you things you can do to prevent any bbpress scripts from loading on non-forum pages.

    #178764
    RobertL4807
    Participant

    I see I have a competitor using MailChimp to send notifications from their bbPress forums such as notifications of new topics in a forum and replies to your post.
    Both our sites also use BuddyPress.

    I cant seem to find the exact plugin I should use.

    Any help would be greatly appreciated.

    Thanks

    #178754
    redd012a
    Participant

    Hi,
    I’m using latest version of the plugin and wordpress. I wanted to know that can i define post template for my bbpress forum?

    We use our forum for applications!
    I may refer the link given below:
    https://www.warzone.club/forums/topic/adminship-application/

    In this topic, I want the bold on in my predined template.

    Thanks

    #178753
    farkhandqbal
    Participant

    One of my websites has an average loading time, but I fear will bbpress increase the server load time?

    #178751
    hanifascraps
    Participant

    Wordpress 4.6.1
    Bbpress 2.5.10 |

    Hi there,
    Today I found here the forum some very useful code to help me change something as colores and sizes.
    But there is a component I could’t change, that is the Forum-Title.
    Is there anyone that can help with some simple css as how to change the forum title
    I thank you in advance.

    hanifascraps
    Participant

    I just want to thank @fpradmin because parte of his code, just help me a lot.
    I has able to change the size font on my bbpress forum.

    Kind Regards,

    Cory
    Participant

    Hi. Three years later, we actually find ourselves in the opposite situation as well. We’d like to convert BBPress topics/replies to standard posts/comments. Have you done that successfully?

    Marcus Quiroga
    Participant

    Hi @corypina,

    Why do you decide to do that? We are trying do the oposite. BBpress to CPT.

    Could you share your experience?

    Thank you

    #178742
    atmojones
    Participant

    So I made a clean install of WordPress and bbPress (and then after a few test posts I installed buddypress which didn’t change anything) and made 2 users. When I @mention a user in the forum it links correctly regardless of how many spaces I enter. HOWEVER, it does always strip the leading spaces down to 1 in the presentation of the post. If I click Edit on the post the original number of spaces can be seen. Is this intended behavior?

    I’m going to make the changes to functions.php to enable the visual editor and to enable buddypress @mention suggestions in bbPress visual editor (like my production site) and see if the error reproduces.

    screenmirroring
    Participant

    Please help me

    lukasklokan
    Participant

    Hi guys,
    I am just trying to setup my first bbpress forum. I would like to allow unregistered users to create new forum topics and replies. In settings, I have ticked the box Anonymous posting: Allow guest users without accounts to create topics and replies.

    However:
    1) When trying to create new topic as unregistered user, I am receiving error: “ERROR: Your topic cannot be created at this time.”
    2) When trying to respond to existing forum topic as unregistered user, I am receiving error:
    “ERROR: Your reply cannot be created at this time.”

    Can you please advise what I am missing here? I am using WordPress 4.6.1 and bbpress 2.5.10

    Thank you,
    Lukas

    #178709
    lovelyrita78
    Participant

    Hi,

    I’m using the latest versions of WP and bbpress to date. I created some forums and a private forum also using Private groups. Everything perfect. Only one thing: When a normal user (not allowed to see the private forum) is logged in, he can still see that there is another forum due to the link at the bottom that points to the next forum. Of course, when he clicks there, he can’t access it, but still he knows of its existence. Would it be possible to control this “next forum” options somewhere to disable them or, at least, those pointing to a private forum?

    Thanks a lot in advance.

    #178703
    iempoweru
    Participant

    I have disabled every plugin except membership 2, bbpress and buddypress. I still have the same issue. I just found this thread and will try some of the suggested fixes. This thread is 3 yrs old, does anyone know why this issue would be cropping up again?

    Slow down; you move too fast

    Thanks in advance for the help! Linda @iempoweru

    Julia_B
    Participant

    I want to switch the Top Five Topics widget on my site to a Topics With No Replies widget.

    I think I’ve found the code referring to the Top Five Topics widget in functions.php – this looks like it:

    function rk_top_five_view() {
    bbp_register_view( ‘top-five’, __( ‘5 Most Popular Topics’ ), array(
    ‘meta_key’ => ‘_bbp_reply_count’,
    ‘posts_per_page’ => ‘5’ ,
    ‘ max_num_pages’ => ‘1’,
    ‘orderby’ => ‘meta_value_num’ ),
    false );
    }

    add_action( ‘bbp_register_views’, ‘rk_top_five_view’ );

    And I think this is the relevant code on the page where the widget is displayed:
    [bbp-single-view id="top-five"]

    According to https://codex.bbpress.org/features/shortcodes/ the code for No Replies is:
    [bbp-single-view id=’no-replies’]

    So I’m guessing that on the page I just need to replace top-five code with no-replies…?

    But what about the code in functions.php?

    I found this on github:

    bbp_register_view(
    ‘no-replies’,
    __( ‘Topics with no replies’, ‘bbpress’ ),
    apply_filters( ‘bbp_register_view_no_replies’, array(
    ‘meta_key’ => ‘_bbp_reply_count’,
    ‘meta_value’ => 1,
    ‘meta_compare’ => ‘<‘,
    ‘orderby’ => ”
    )
    ) );
    }

    Is this what I need? Or should it start with function like the current code I posted at the top?

    Please excuse me if I’m missing something obvious here – I’m just the website owner, not a developer.

    Thanks in advance 🙂

    #178696
    MalMac
    Participant

    Hello All,

    I would like to upgrade my bbpress plugin on a testing/staging server.
    I do not want to reveal the existence of this staging server to any of my users however.
    Is there a way to disable all notifications coming from BBPress?

    Thank you, Malcolm

    #178694
    iempoweru
    Participant

    @robkk One more thing. I disabled all of the bbpress plugins but the main one, to see if there was conflict among these that would be causing the problem. There was not – still getting same message when a visitor is trying to create a topic or a reply. Thanks again for your help @iempoweru Linda

    #178692
    DealL
    Participant

    Thank you for the guidance. However, let’s say there is a new post with id #123 and I attach a bbPress topic to it id #456 (by attach, I mean replacing comments with bbPress replies)

    Now, a grid that’s generated on the homepage is generated by the WordPress post #123. How will I ensure that the replies count of topic #456 shows in place of comment count of WP Post #123? How can that synchronization be done?

    Thank you again

    #178690
    visitor247
    Participant

    Thanks for the answer.
    I could switch off Auto-Embed in the settings and loading time will be fine, but SoundCloud and YouTube embed should definitely work.
    The links to other messages are the problem, because bbPress loads every content of every linked thread without showing it.

    #178670

    In reply to: Manual topic labels

    Robkk
    Moderator

    I added how to create status labels here. There is a way to create a hot label, but what I posted is just for a certain number of replies posted in a topic. Other forum systems use rating or number of replies in a certain time frame. So adjust as you please. Using the classes I have in the code you can style the label with CSS.

    https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#24-show-status-labels-for-bbpress-topics

    #178669
    Robkk
    Moderator

    This is a possibly known issue that is theme/bbPress theme compatibility related.

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

    To fix this place the content-search.php and form-search.php files from the bbPress plugin to your child theme in a folder called bbpress.

    If you haven’t created a child theme create one.

    https://codex.bbpress.org/themes/theme-compatibility/

    https://codex.wordpress.org/Child_Themes

    #178667
    Robkk
    Moderator

    Is it really just replace the underscores with spaces in this __@mention and it won’t work for you.

    This is blowing my mind right now.

    Did you do plugin and theme troubleshooting??

    https://codex.bbpress.org/getting-started/troubleshooting/

    #178666
    Robkk
    Moderator

    Are your forum posts still there?

    This could a possible theme issue. I think bbPress could use a template (either content-search.php or search.php ) by accident from your theme.

    Are you using a custom theme, you might want to create a child theme if so?

    To fix this place the content-search.php and form-search.php files from the bbPress plugin to your child theme in a folder called bbpress.

    If you haven’t created a child theme create one.

    https://codex.bbpress.org/themes/theme-compatibility/

    https://codex.wordpress.org/Child_Themes

Viewing 25 results - 10,176 through 10,200 (of 64,474 total)
Skip to toolbar