Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 33,626 through 33,650 (of 64,534 total)
  • Author
    Search Results
  • #111372

    After further research it seems there’s just an issue with the bbpress toolbar plugin not working since the bbpress bbcode plugin works fine.

    #41764
    Crisium
    Member

    Just installed the Codestyling Localization plugin… it spits out a message: “Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about that.”

    Well,.. the author would be bbPress.

    any comments?

    I’m unable to use this plugin on bbPress but works fine on everything else.

    regards,

    Peter

    #41763

    Hello,

    Maybe I’m doing something wrong but it seems when I activate bbPress plugins they do not take effect for my bbPress forums that were established through BuddyPress. Is this expected behavior or am I doing something wrong or have an incorrect expectation?

    Thanks

    #110850
    SK
    Participant

    I tried what you suggested.

    At my forums root http://klymene.net/forums/ you will see 2 forums listed – English and Hindi. You will also see that there is an indication of some content under English.

    If you click on English http://klymene.net/forums/forum/english no topics are listed.

    On top of page, you will see error message

    Warning: preg_match() [function.preg-match]: Compilation failed: nothing to repeat at offset 1 in .../wp-includes/class-wp.php on line 201
    Warning: preg_match() [function.preg-match]: Compilation failed: nothing to repeat at offset 1 in .../wp-includes/class-wp.php on line 202

    You can go directly to http://klymene.net/forums/topic/test and see the topic which should be under the English forum. Topic actions like Reply are absent though.

    On top of page, you will see error

    Warning: preg_match() [function.preg-match]: Compilation failed: nothing to repeat at offset 1 in .../wp-includes/class-wp.php on line 201
    Warning: preg_match() [function.preg-match]: Compilation failed: nothing to repeat at offset 1 in .../wp-includes/class-wp.php on line 202

    P.S. In Settings > Permalinks, the setting is

    /%postname%.html

    #111333
    Anointed
    Participant

    you have mail, check your critter club contact email.

    #110849
    Anointed
    Participant

    Make sure that you have gone into settings -> forums and clicked save. I would also suggest going into settings -> permalinks, choose a nice url structure from the list and also click save.

    This ‘should’ set the permalinks for everything so that your topics will show up. Hopefully solving the problem.

    #41762
    purkleturkle
    Member

    Hello, I would like to create users in bulk is this possible with just bbpress i.e. is there a plugin.

    I have tried to created a csv and imported into PHPMYADMIN and all the data is populated (example below) but when I go into bbpress users to look what has imported it says “Inactive (no role)” next to the user. Is it possible to assign the users a role and where is this stored?

    Also how does the user_pass string work or is this where I am going to get stuck?

    ID,user_login,user_pass,user_nickname,user_email,user_url,user_registered,user_status,display_name

    22,testuser,$P$BQHywh8ariE18rJg0h8preaPL1dd3x2,testuser,testuser@mail.com,http://www.website.com,2010-03-15 00:00:00,0,testuser

    #106462
    jobzesage
    Member

    Oh man, I wish there was a better documentation for this, it’s not that easy to figure out… after a couple of hours of Googleing and trying all kinds of combinations, the only thing that works for me is :

    Place the mo files in the plugin language folder as following /wp-content/plugins/bbpress/bbp-languages/bbpress-xx_XX.mo

    This is not ideal, as next time we update bbpress the translation files will be overwritten. The translation files should probably be in : /wp-content/languages/, in /wp-include/languages/ or in the child theme we use but none of these work for me.

    Any ideas on how to have the translation files outside of the plugin directory?

    #110848
    SK
    Participant

    Anointed, I’m facing a bit of a problem.

    I have just installed bbPress plugin into my WordPress (with Weaver II theme – based on TwentyEleven theme).

    When I go to the forums root, the layout seems acceptable.

    However, when I click on a forum, I am taken to a page where I do not see any topics listed under the forum, even though I have created a topic under this forum, and this is acknowledged in the forum list (root).

    If I go directly to the topic URL by typing it in address bar, I do get to the topic page, which is visible just fine (except that no reply, flag, quote etc buttons are available).

    Please help!

    https://bbpress.org/forums/topic/topics-not-showing-in-forum

    #41756
    SK
    Participant

    I have just installed bbPress plugin into my WordPress (with Weaver II theme – based on TwentyEleven theme).

    When I go to the forums root, the layout seems acceptable.

    However, when I click on a forum, I am taken to a page where I do not see any topics listed under the forum, even though I have created a topic under this forum, and this is acknowledged in the forum list (root).

    If I go directly to the topic URL by typing it in address bar, I do get to the topic page, which is visible just fine (except that no reply, flag, quote etc buttons are available).

    Please help!

    #111331
    neodoxa
    Participant

    I’m now interested in “hiring” someone to help me with creating my bbPress forums. I really need the help and it seems like bbPress is just out of my league.

    If you are interested, please let me know!

    Thanks,

    Corey

    highexistence
    Participant

    Currently when using the BBpress 2 plugin with Buddypress, the notification a user receives when @mentioned in a topic is:

    ‘Username has mentioned you in an activity update’, which links to the activity update of the forum post, not the actual forum post.

    Does anyone know how to change the notification text, and the link so that it takes the user to the forum post?

    #41753
    neodoxa
    Participant

    Hello,

    So I have made a few posts around this forum and the wordpress forums about my technical difficulties with bbPress integrating into my theme… I’ve yet to figure it all out.

    I’m not sure if this is the right forum to post this in or not, but I would like to “hire” someone to help me with my forums. I want to make them with bbPress and have them full-width, while still retaining the main menu and logo at the top of the website…

    If anyone is interested in helping me out, please let me know!

    http://www.critterhub.com

    Thanks,

    Corey

    #109907
    highexistence
    Participant

    I was able to do this with the following code:

    <?php if ( bbp_has_topics( array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value', 'show_stickies' => false ) ) ) : ?></p>
    <?php bbp_get_template_part( 'bbpress/loop', 'topics' ); ?>
    <?php bbp_get_template_part( 'bbpress/pagination', 'topics' ); ?>
    <?php else : ?>
    <?php bbp_get_template_part( 'bbpress/feedback', 'no-topics' ); ?>
    <?php endif; ?>

    #111014
    highexistence
    Participant

    Alternatively, is there a way to use the WP-Page Navi plugin instead if this is not editable?

    #111319
    OAEErra
    Member

    I see – I meant port the plugin from BP to BBP if it was possible.

    Hopefully some kind soul can get a plugin released soon!

    #111330
    neodoxa
    Participant

    *Bump*…

    What I’m aiming for is just something like this…

    http://purerover.com/forum

    Maintaining my main menu and logo at the top, while having full width organized forums/subforums below.

    Is there a way to do this with bbPress or phpBB3?

    Any help with this is super duper appreciated! :)

    Thanks,

    Corey

    #41746
    CloeST
    Member

    I’m using simple:press right now (www.simple-pres.com)

    And, I really badly want to convert to bbpress. Is there any importer or plugin or something available?

    #41745
    frank tredici
    Participant

    I installed WordPress 3.3 and BuddyPress 1.5.2. BuddyPress seems to be considered my site.

    The bbPress plugin already existed after I first installed BuddyPress.

    I now want to run a Bulletin Board site so I created a new site and gave it a directory name off the root install.

    When I FTP to the server, the directory I created does not show up yet I can render a site at the address that includes the directory in the url. I also get the Twenty Eleven theme with the site.

    I went to the site and activated the bbPress plugin.

    The Bulletin Board site looks like traditional WordPress.

    How do I get the new site to look like your bulletin board site?

    #108956
    rpetersn
    Member

    jloosli,

    I just spent the bulk of my morning trying to figure this out and finally came up with a solution that involves creating a child theme to my current theme (not necessarily a requirement to do it this way, but I wanted to keep the BBPress files organized and separate from the rest of my theme).

    In the child theme I copied over all of the BBPress template files the ship with the plugin and then updated my site to run from the Child Theme. This allows the appropriate template files to be picked up and the forum snapped back to life.

    You could also just copy in the necessary template files to the root of your theme, a bit messier, but that’d work as well. Anyway….I’m finally getting back to work on the thing (cleaning up all of the default templates) now after a 4-5 hour detour.

    Oh…and you’ll need to enable theme support for ‘bbpress’ too in your functions file if you go my route (either child theme or using your ‘main’ theme):

    // Add bbPress theme support

    add_theme_support( ‘bbpress’ );

    Wish I knew why it worked before and suddenly stopped, that still has me stumped…but at least I understand the structure of how this all goes together now:

    BTW, if you haven’t already seen it, this helped a ton:

    https://bbpress.org/forums/topic/bbpress-20-theme-compatibility

    Hope you get further down the road too!

    #108955
    jloosli
    Member

    I was hoping things would change with WordPress 3.3, but still no go. I’m working on a SSO plugin for Simple Machines, but ideally I’d like to get bbPress working.

    Maximus2
    Member

    or better phpbb conversion?

    #40637
    Sean_A
    Member

    Is there a plugin that allows mods/admins to move a post from a topic to another topic?

    This would be extremely useful plugin for mods and is typically widely available on other forum software.

    #110268

    In reply to: BBPress 2 Unread Post

    Sean_A
    Member

    Hi Orange.

    DId you find a solution for this? I’d love to be able to add it to my forums.

    #111318
    Sean_A
    Member

    I would love this plugin also.

    OAEErra, it is my understanding that you can’t install any plugins on BP’s built in forum system. So you’d lose many other abilities if you choose to port it over there.

Viewing 25 results - 33,626 through 33,650 (of 64,534 total)
Skip to toolbar