Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 7,651 through 7,675 (of 64,471 total)
  • Author
    Search Results
  • salespowernn
    Participant

    What settings of bbPress will enable our users to upload media files from their personal cabinet without any size or amount restrictions?

    Robin W
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    maks12345
    Participant

    When I try to access a user profile (not an administrator), I get an error 404.
    From the administrator user comes in and does not go from the usual. What to do?
    WordPress version: 4.9.2
    Version of bbPress: 2.5.14-6684.
    Site address maks12345.biz.ua (site in Russian language)

    #189717
    jasmeetsingh
    Participant

    Hi,

    I am using bbPress to get my user register to my website.
    Everything is going awesome. User register and gets verification email.
    But now the issue is that I want to modify the verification email and I am not able to find out where the verification email can be mofified.

    I searched a lot, but all in vain.
    Please guide me how to change the verification email temple..

    Thanks & regards
    Jasmeet Singh

    #189712
    strike3
    Participant

    Hi Robin,
    Sorry for the late reply. I had a health issue that set me back a few weeks. I did some testing on a vanilla WordPress install this morning, and it looks like this issue affects standard BBPress as well. Here’s what I did:

    1.) Set up a local WordPress installation. Added Buddypress, BBPress and WP Mail Logging as the only plugins (latest versions on everything).
    2.) Created several users and a forum. Logged in with each user account and subscribed it to the forum.
    3.) Went to Settings->Discussion from the WP Dashboard and set it to hold a comment in the moderation queue if it has one or more hyperlinks
    4.) Created a new topic that had no hyperlinks (i.e., did not go to moderation). WP Mail Logging showed that a new topic notification was sent and all subscribed users were BCC’d on the email.
    5.) Created a new topic with a hyperlink. The topic went to moderation.
    6.) Approved/published the topic with an admin account. No new topic notification email was sent.

    Another issue is that new topics that are added directly from the Dashboard (i.e., by going to Dashboard->Topics->New Topics) also did not generate a new topic notification. The moderation approvals have to be done from the backend/Dashboard, so maybe these two issue are related?

    Thanks again for your help with this! The moderation plugin author finally did get back to me and said they’ve added the issue to their backlog, but now I’m wondering if this is something that should be fixed in standard BBPress?

    If necessary, the site owner I’m working said they might be willing to pay directly to get this issue fixed. However, their company is a small non-profit, so they probably won’t have a lot of extra funds for this sort of thing.

    Matt

    Robin W
    Moderator

    I think I have code that fixes this in

    Gravity Forms to bbPress (Force Topics to Specified Forum)

    #189697
    lakemac123
    Participant

    I am using user registration on my WP site, would like to install BBpress but dont want 2 registration pages, how can I overcome this problem?
    Thanks

    jsteckler1
    Participant

    Hi @casiepa,

    Thank you for jumping in!

    Some additional details about my situation:

    Upon submission of a specified Gravity Form, I am attempting to create a new topic under a specified forum (Forum ID: 31086).

    While creating the new Topic was simple enough with the Custom Post add-on—which successfully created the Topic, including the body of the topic post, accordingly—the topic was being listed under “No Forum.” @cjerrells post got me closer, encouraging me to add another custom field named _bbp_forum_id with a default value of 31086 (the forum ID). After doing that, the assigned forum seemed to display correctly on the backend, but:

    1) The breadcrumb would only display the forum after editing and resaving the post again

    — It still will not, however, show on the front-end forum among the other forum topics

    2) The topic would finally display correctly on the front-end among the other forum topics only after adding a reply to the topic post.

    Here is a screenshot of my Gravity Form settings, as well as the code cjerrells kindly provided within my functions.php file. My ability to write php is still very elementary, and it seems a bit difficult to find a full list of bbPress actions and hooks, so I wasn’t sure exactly what needed to be altered to fit my needs.

    I would be beyond appreciative if you could give it all a look and get back to me with any thoughts or ideas you may have.

    #189660
    Robin W
    Moderator

    or that could be total rubbish if gravity forms aren’t using bbpress to create, which they probably aren’t – let me think further !!

    #189659
    Robin W
    Moderator

    Forums and Topics are totally separate custom post types, correct?

    Yes.

    I am reticent to start delving into this plugin – there are hundreds of thousand of plugins in wordpress and I only go into those that are specifically bbpress and then only a few of those – it can take a day easily to look at and understand a plugins code 🙂

    There is a hook in topic creation that you could use

    The following code is untested, but you could put this in your functions file. You must be able to edit that file outside of wordpress (ie NOT using dashboard>appearance>editor) in case it errors so you can amend it.

    add_action( 'bbp_new_topic_pre_extras', 'new_topic_id', 10, 1 );
    
    function new_topic_id ($forum_id=0) {
    	if (empty ($forum_id)) $forum_id  = 31086 ;
    	return $forum_id ;
    }
    

    This will put any topic that doesn’t have a forum into that forum.

    #189653
    Robin W
    Moderator

    see this link

    http://www.wpbeginner.com/plugins/how-to-deactivate-all-plugins-when-not-able-to-access-wp-admin/

    The issue is with this plugin

    bbPress Login Register Links On Forum Topic Pages

    which was updated a day ago.

    so don’t re-enable that one

    if you go to that plugins support page, you’ll find someone has already logged that error.

    You should revert to the earlier version until it is fixed

    #189652
    thecollegedorm
    Participant

    Hi, my site has been working fine all along till I updated my plug-ins a few hours ago. Now I can’t even access my homepage (thecollegedorm.com) and instead I receive an error message like this:

    Fatal error: Can’t use function return value in write context in /home/thecollegedorm/public_html/wp-content/plugins/bbpress-login-register-links-on-forum-topic-pages/bbpress-login-register-links-on-forum-page.php on line 30

    May I know if this is an issue with the plug in or? I cannot even access the wordpress admin page for my site now which really sucks as I can’t uninstall the plug-in.

    jsteckler1
    Participant

    Using Gravity Forms and bbPress, I am attempting to create a new topic, within a specific forum, upon form submission.

    I have tried to incorporate the Gravity Forms Custom Post Type add-on to accomplish this, but, presumably due to the non-heirarchial structure of bbPress forums, I only seem able to either:

    A) Create a new FORUM with the submitted data
    or
    B) Create a new TOPIC that goes unassigned to any forum

    So, basically, unless a topic can be created as a child of a forum, I’m not sure there’s a way to get this working with that add-on.

    Is there any way I can force the topic to be created within a specified forum using php? Any other thoughts or alternatives? Maybe a workaround that forces all topics created via Gravity Forms submission to default to a specified forum?

    For what it’s worth, I am using Gravity Forms for users to submit event proposals. My idea is to then have the submission data routed into a forum like bbPress where the powers that be may vote on and discuss each proposal.

    #189645
    Pascal Casier
    Moderator

    If you are just exporting and importing, why not using the standard WP tools export and import? See https://codex.bbpress.org/getting-started/exporting-data/

    Or are you trying to do something special?

    #189635

    In reply to: bbPress Post Via Mail

    Stephen Edgar
    Keymaster

    This plugin supports posting to bbPress by email https://github.com/rmccue/falcon

    It’s out of date and needs some testing and reporting what does and doesn’t work

    If anyone could help with the I could help get any code changes required added 🙂

    #189632
    liderxlt
    Participant

    Hello, people again. I know that this is not the official forum of the plugin but as there are few add-ons for the import in bbpress I am sure that some time they will have used it.

    I’m still struggling to import and update my forum automatically. As you can see in previous topics I was trying to import from xml files and with the plugin allimport.

    Hello, people again. I know that this is not the official forum of the plugin but as there are few add-ons for the import in bbpress I am sure that some time they will have used it.

    I’m still struggling to import and update my forum automatically. As you can see in previous topics I was trying to import from xml files and with the plugin allimport.

    Now I try to import with the bbPress Import & Export plugin.The problem is
    “AJAX Error” message when importing

    I thought the structure of the csv file was wrong so I made a clean forum with topic and replic, export it to import it again but the same error comes out.

    The first time I import, I also appreciate the error message but it was the only time I import some topic, then I could not import anymore.

    I leave the structure of the csv file.

    "ID","post_date","post_date_gmt","post_content","post_title","post_status","comment_status","post_parent","menu_order","post_type","post_mime_type","post_alter_id","tag_topic"
    "241","2018-01-20","2016-02-02","CONTENIDO","2415/15 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","241","2415/15"
    "285","2018-01-20","2016-02-02","CONTENIDO","2859/15 | NOMBRES ","publish","closed","19","0","topic","","285","2859/15"
    "172","2018-01-20","2016-02-02","CONTENIDO","1723/14 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","172","1723/14"
    "226","2018-01-20","2016-02-02","CONTENIDO","226/12 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","226","226/12"
    "227","2018-01-20","2016-02-02","CONTENIDO","227/12 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","227","227/12"
    "258","2018-01-20","2016-02-02","CONTENIDO","2583/15 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","258","2583/15"
    "257","2018-01-20","2016-02-02","CONTENIDO","2575/15 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","257","2575/15"
    "255","2018-01-20","2016-02-02","CONTENIDO","2557/15 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","255","2557/15"
    "256","2018-01-20","2016-02-02","CONTENIDO","2569/15 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","256","2569/15"
    "258","2018-01-20","2016-02-03","CONTENIDO","2586/15 | NOMBRES s/ JUICIO EJECUTIVO","publish","closed","19","0","topic","","258","2586/15"

    I’m working on a localhost installation.
    Regards!

    #189629
    avaiya
    Participant

    Wordpress Version:4.9.2
    bbPress Version: 2.5.14
    Site: http://www.avaiya.com

    I have a couple of questions related to the default emails that get sent when people post to forums, follow topics, etc.

    1. These emails show up as being sent from our admin email address, with the name Avaiya Media. I’d like to edit the name and the email address sending the emails. Do you know how I can do that?

    2. These emails send a notification to the person who subscribed to that forum post, but they also
    automatically send an email to noreply@avaiya.com. This is bouncing. How can I remove this email address when these emails are sent?

    Thanks!

    #189623
    Robin W
    Moderator

    sorry but this is getting beyond free help. bbpress just uses wordpress registration, so this is not really a bbpress issue, rather a wordpress one.

    I’m afraid I can’t help further

    #189622
    Robin W
    Moderator

    bbpress and twenty twelve work fine.

    bbpress is not resource heavy.

    #189621
    Robin W
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #189619
    avaiya
    Participant

    Wordpress Version:4.9.2
    bbPress Version: 2.5.14
    Site: http://www.avaiya.com

    I’d like to have a notifications “bell” on the upper right menu bar of our membership site,
    such that people see the # of notifications they have. These would be notifications from bbPress like when someone comments on a forum they are subscribed to, etc. These are the same notifications they will receive via email as well.

    I’d also like it to integrate with BuddyPress and for it to show notifications from BuddyPress like when they get a friend request, a private message, etc.

    Thoughts on how to do this?

    Thanks!

    #189616
    mishabesse
    Participant

    Settings is missing in BBpress

    Version 2.5.14
    It shows only Deactivate
    I killed it and reinstalled. No change
    http://www.nuzhengid.com/
    How to fix it?

    #189613

    In reply to: bbPress Post Via Mail

    graminou
    Participant

    @slanglois Bonjour, avez-vous pu mettre en place la publication/réponse sur bbpress via le mail ? Je suis très intéressé par cette solution ! Merci d’avance pour votre aide.
    JMarc

    #189611
    Nebenjob Netz
    Participant

    Hello,

    I want to use bbPress for my webblog.

    It is possible to use with the Twenty Twelve Theme? Anyone have trouble with Twenty Twelve and bbPress?

    How about the resources and PageSpeed? Is the bbPress Plugin very resource-heavy?

    Details:

    – WordPress 4.9.2.
    – bbPress (newest Version)
    – Webblog: https://nebenjob-netz.de/

    #189610
    Pascal Casier
    Moderator

    bbPress is using standard WordPress functions for user registration, so this is not strictly bbPress related. In most of the cases it’s because of a security plugin or something in your theme. So the above steps from @robin-w should help you troubleshoot.

Viewing 25 results - 7,651 through 7,675 (of 64,471 total)
Skip to toolbar