Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 15,726 through 15,750 (of 64,516 total)
  • Author
    Search Results
  • #161060
    Robkk
    Moderator

    @casnbug

    ok if you think its just bbPress maybe your bbPress installation had some issues??

    try uninstalling the bbPress plugin then re-install it.

    #161057
    casnbug
    Participant

    @Robkk
    Sorry, but I disagree. It may be that the theme is not hiding the warning like the default wordpress theme, but the error is definitely coming from the bbpress plugin.

    #161055
    Robin W
    Moderator

    If your site is that busy, you really should have a test site

    https://codex.bbpress.org/creating-a-test-site/

    Dan & Jennifer
    Participant

    Hi there!

    We’re trying to move our forums from a custom Q&A platform to bbPress… very glad there is now an importer! πŸ™‚

    So I copied example.php to myimport.php, changed the class name, and updated the tables/columns that apply (the ones that exist in the old database).

    And ran the import…

    But I keep running into import errors for fields that don’t apply as they don’t exist in the other database, like forums_table.the_reply_count

    So for a field that just does not exist in the old database, what’s the proper syntax for “ignore this”? πŸ™‚

    For example, this one…

    
    // Forum topic count (Stored in postmeta)
    		$this->field_map[] = array(
    			'from_tablename' => 'forums_table',
    			'from_fieldname' => 'the_topic_count',
    			'to_type'        => 'forum',
    			'to_fieldname'   => '_bbp_topic_count'
    		);
    

    I looked for this on the importer codex page, but just don’t see it. πŸ™‚

    Thanks!
    Dan

    #161040
    andrew55
    Participant

    I recently moved our bbPress installation from one folder to another. Everything seemed to go well, accept when I loggged in, my admin account lost all admin privileges.

    Fortunately, I have another second test bbPress installation and could see what admin status looks like in phpmyadmin.

    So, in the first installation, using phpmyadmin, in the metavalue of the wp_usermeta table, I changed:

    a:2:{s:10:"subscriber";i:1;s:15:"bbp_participant";b:1;}

    to…

    a:2:{s:13:"administrator";b:1;s:13:"bbp_keymaster";b:1;}

    It seems to work. My admin account has admin privileges.

    Now I understand the administrator and bbp_keymaster in the string, but what about the rest of the characters? For example, I changed s:10 to s:13.

    Is this OK?

    I’m just not sure what these other characters mean and what they need to be.

    Thanks for any help.

    #161038
    Robkk
    Moderator

    I tried modifying User Roles and Capabilities from functions.bb-capabilities.php, so that all the users can have same capabilities as keymaster

    that sounds dangerous, don’t do that

    see if this helps, follow all the links on the page too, and see if you set it up correctly.

    Forum Networks

    #161037
    sndstrm
    Participant

    I already coded a private bbPress Plugin, that extends it to something like Mailman.
    It just periodically catches mails to @forum.domain.tld via IMAP and adds a new reply to the topic with the Mail content (quotation skipped).
    The notification is tweaked: the Reply-To header is replaced by reply-[topic-id]@forum.domain.tld, so the user can easily reply to the topic. But this is currently done by completely replacing the bbp_notify_topic_subscribers function with my own one (including the original content, just replacing the Reply-To).
    All calls to bbp_subscription_mail_headers and bbp_subscription_from_email or bbp_subscription_to_email are just called with $headers or the address itself. As of 1.5.6 the Reply-To is no longer set by bbPress.

    Will there be a way to include the topic-id (preferred in header altering) in upcoming releases? Or maybe a solution by bbPress itself to respond to notification Mails?

    xenous
    Participant

    you can configure the noreply email simply with:

    
    add_filter('bbp_get_do_not_reply_address','my_bbp_no_reply_email');
    function no_reply_email(){
        $email = 'noreply@yourdomain.com';
        return $email;
    }

    bbPress uses BCC for sending subscription emails and the noreply email is used as to field. This is for better hardware (cpu and memory) usage as if you were to loop each user subscribed to content it would be troublesome.
    you can change that default to email address as well with :

    
    add_filter('bbp_subscription_to_email','my_bbp_subscription_to_email');
    function my_bbp_subscription_to_email(){
        $email = 'noreply@yourdomain.com'; // any email you want
        return $email;
    }

    I hope this helps.

    Jake Hall
    Participant

    Hi all,

    Having an issue with bbPress Pagination, unfortunately it seems it has broken. Every single post is dumped onto the same page within actual topics.

    It (seems) to be working with categories, as I can do /category/forum/page/2/ and it will tell me there is no content, however, when doing that within a topic it just shows everything.

    No pagination links are being drawn at the bottom of the page either.

    My pagination-replies.php file is identical to that of which is provided in the templates folder.

    I was hoping to put my site live tonight and right at the last hurdle, it doesn’t seem it’s happening. πŸ™ I am essentially looking for people to go over the basics to make sure I haven’t missed anything that would cause this to happen, so please.. do help! πŸ˜›

    edit: so I have just activated the twenty-fourteen theme to see if I had broken it in my theme, and it is exactly the same there too. What have I done? πŸ™

    edit2: I have resaved permalinks, ran all of the forum tools – still the same.

    #161027
    nofightnolife
    Participant

    bbPress 2.5.6

    Thanks.

    #161013
    Robkk
    Moderator
    #161007
    Robkk
    Moderator

    @nofightnolife

    what bbPress version are you using??

    #161004
    Robkk
    Moderator

    @katootje Robin forgot he already had this type of functionality in one of his other plugins.

    bbp additional shortcodes

    #161003

    In reply to: Conflict with jeptack

    Robkk
    Moderator

    @davidnsfw

    im using jetpack on my site with bbPress and i dont see a problem.

    it could be something else conflicting with both.

    Robkk
    Moderator

    there should be a subscribe option for forums

    it should be toward the bbpress breadcrumbs though.

    #161000

    In reply to: noreply@domain.com ?

    Robkk
    Moderator

    @matthias70

    try not just bbPress specific plugins but also any other WordPress plugins.

    you and @jturet seem to have issues of late , so we have to see if its another plugin causing the issue a host setup or whatever else to pinpoint the issue.

    if it is bbPress i will contact the Devs.

    #160999
    Robkk
    Moderator

    @casnbug

    its definitely something wrong with the freshness link just cant tell if a code snippet could be affecting the code or what.

    you can go through the basic troubleshooting for general issues by following this post

    Before Posting

    #160998
    Robkk
    Moderator

    i just installed bbpress and wp seo and i dont seem to have a problem

    go through the basic troubleshooting steps for basic issues in this post to try to pinpoint the issue.

    leave bbpress and wp seo activated and just deactivate the rest then turn the on one at a time.

    Before Posting

    #160994
    Robkk
    Moderator

    use the bbpress stats widget or shortcode [bbp-stats] in a page

    for just all topics it would placing these in a template.

    these come the template content-statistics.php which you could copy into child theme into a folder called bbpress and customize.

    <?php echo esc_html( $stats['topic_count'] ); ?>

    for just replies it would be

    <?php echo esc_html( $stats['reply_count'] ); ?>

    #160993
    Robkk
    Moderator

    i think this would require making a bbpress.php file from a copy of the page.php file and then make sure the sidebar is still there.

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    if you need help it would be helpful to also contact your theme author about this.

    Robkk
    Moderator

    @matthias70

    this should be fixed in latest bbPress unless you are using a plugin that is making the subscriptions have issues.

    go through the general troubleshooting steps for common issues in this link

    Before Posting

    #160991

    In reply to: Tittle

    Robkk
    Moderator

    i don’t now where to insert the code you told and also thanks for your help

    alright do you know what FTP is?? or how to upload files through your hosts file manager??

    because you would bascially just copy that file from here

    https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout/

    and put it into your child theme (if you have a child theme) and put it into a folder called bbpress.

    Then you would have to create categories for every forum you have for it to have this effect like phpbb has.

    if you need a better explanation on certain things please just ask and i will try to help you.

    #160990

    In reply to: noreply@domain.com ?

    Matthias
    Participant

    Hi Robkk,
    stopped all bbpress plugins and cleared the function.php without success.
    But I’m not the only one with this problems

    Emails being sent to noreply@www.mysite.com for subscription emails

    #160989
    Robkk
    Moderator

    follow this guide and it should help you.

    http://www.kristarella.com/2013/04/bbpress-forum-icons/

    #160988

    In reply to: noreply@domain.com ?

    Robkk
    Moderator

    @matthias70

    did you go through the usual troubleshooting steps for general issues in

    Before Posting

    and see if another existing plugin might have caused an issue??

Viewing 25 results - 15,726 through 15,750 (of 64,516 total)
Skip to toolbar