Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 15,326 through 15,350 (of 64,518 total)
  • Author
    Search Results
  • #162312
    Robkk
    Moderator

    @sultanuddin

    you will need to hire a developer for this.

    one that has experience with WordPress , bbPress , and creating Android applications.

    #162311

    In reply to: Help.

    Robkk
    Moderator

    it is displaying like this because bbPress thinks your forums is a blog posts because of some code that should be only for blog posts.

    create a bbpress.php file

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

    if you need any more help with this reply back

    #162308
    van24
    Participant

    Hi guys,

    The members of our bbpress forum would like to be able to search by user. e.g. they might want to search for all posts by a user named ‘member1’ that contain the text ‘sample words’. I thought they might be able to use search parameters somehow for this, i.e.

    user:member1 “sample words”

    Is there any way to achieve this in bbpress?

    Thanks
    Van

    #162307
    greenhoe
    Participant

    I’m not using any currently but I installed a few different ones just so I could see the roles and none of the bbpress roles appear under any of them.

    #162306

    Topic: Help.

    in forum Troubleshooting
    ew4055
    Participant

    I used the Step-by-Step Guide to set up BBPress and it still isn’t working for me. My forum displays the forum names in a weird chunk of text, not in the nice layout of a forum, please help.

    My website is here: http://swakpack.org/forums/

    WordPress version 4.2.2
    bbPress: 2.5.7

    And no, I admit this does not happen with the themes Twenty Twelve etc. the forums look perfect on those themes.

    #162304
    Robin W
    Moderator

    Yes, one is from your theme, and one from bbpress.

    which one do you want to lose?

    #162302
    usr79223992
    Participant

    I went through the documentation of adding actions (https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-4/) and then I looked up the places within the code for the following 3 events:
    – user registration
    – topic creation
    – reply creation
    I see, that I could add code before and after the “submit” button, but that’s not exactly what I need.
    I need to add an function call for ga.js directly to the button.

    Example (this is the code line for the “submit new topic” button):
    <button type=”submit” tabindex=”<?php bbp_tab_index(); ?>” id=”bbp_topic_submit” name=”bbp_topic_submit” class=”button submit”><?php _e( ‘Submit’, ‘bbpress’ ); ?></button>
    this must become:
    <button type=”submit” tabindex=”<?php bbp_tab_index(); ?>” id=”bbp_topic_submit” name=”bbp_topic_submit” class=”button submit” onClick=”_gaq.push([‘_trackEvent’, ‘Forum’, ‘New Topic’]);”><?php _e( ‘Submit’, ‘bbpress’ ); ?></button>

    How can I achieve this?

    #162301
    sultanuddin
    Participant

    I am new here, and i wanted to find out whether is it possible to have a forum discussion using mobile phone app.

    What i really wanted is to create a forum in my website admin, then different users can follow my link, and also have forum discussions using there mobile phones (Android only). I have found out that there is reader option in android to search and follow your favorite blogs.

    Looking forward for a Solution.

    #162300

    In reply to: Photo Upload

    Ricsca2
    Participant

    He says that is not supported with the current version of wordpress.
    Why this option is not defoult with bbPress?

    Thanks

    #162296

    In reply to: force revision logs

    GrantAdmin
    Participant

    Hi Robkk
    this may sound silly, but where to add this like on which page?
    Just climbed through all the CSS files of bbpress and I couldn’t see anything that matches this to edit or where the right place to paste it.

    sorry for the noob q’s

    #162295
    fmckinnon
    Participant

    Hey Gang,
    Not sure if this is a setting, or an issue with our GrandMag theme (BuddyPress/bbPress theme).
    Take a look at our forums at:
    http://www.theworshipcommunity.com/discuss/

    If you click around, you’ll see that a forum title appears twice:
    Once in the regular black font, then underneath it in a blue font.

    Same thing with EVERY forum thread:
    Example:
    Getting Aquainted – Introductions (in black)
    Getting Aquainted – Introductions (in blue)

    Any clue where this is coming from?

    #162292
    aristotlewp
    Participant

    Is there a way to force an email to all forum members whenever someone creates a new post or posts a reply? Basically, my client wants all members to get emails for everything.

    Wordpress Version 4.2.1
    bbPress Version 2.5.7

    #162289
    Robkk
    Moderator

    Go through the troubleshooting in here.

    Before Posting

    Also know to disable caching for logged in users.

    Since this is an odd issue I am probably going to ask you a bunch of questions to help find the problem if the above steps do not work.

    #162287
    tarnvogL
    Participant

    @Robkk

    it is not the fault of the child theme, I deactivated it and used the default twentyfourteen theme, without any modifications. The problem still remains.

    Maybe this information will help: In the backend, WordPress also displays all users in lower case letters. Do you think there is anything I can do to change this? Maybe it is not a problem of bbPress, but more an issue of WordPress..

    #162286
    Robkk
    Moderator

    add this to your child theme functions.php or install the plugin below.

    function bbp_reverse_reply_order( $query = array() ) {
        $query['order']='DESC';
        return $query;
    }
    add_fiter('bbp_has_replies_query','bbp_reverse_reply_order');

    https://wordpress.org/plugins/bbpress-sort-topic-replies/

    #162285

    In reply to: Photo Upload

    Robkk
    Moderator

    use this for photo uploads into posts

    https://wordpress.org/plugins/gd-bbpress-attachments/

    use basic user avatars for just avatars

    fmckinnon
    Participant

    Hey,
    Trying to do the vBulletin 4.x converter to bbPress. Now, in the import forums of bbPress, there is “vbulletin 3x” and “vBulletin”. I read here that the “vBulletin” option is the one to choose for v4.x

    When I attempt to do the conversion, I get the following error that prevents it from running – can someone help on this?

    WordPress database error: [Table ‘twcadmin_twc_vbulletin.wp_forumsuser’ doesn’t exist]
    SELECT convert(user.userid USING “utf8”) AS userid,convert(user.password USING “utf8”) AS password,convert(user.salt USING “utf8”) AS salt,convert(user.username USING “utf8”) AS username,convert(user.email USING “utf8”) AS email,convert(user.homepage USING “utf8”) AS homepage,convert(user.joindate USING “utf8”) AS joindate,convert(user.aim USING “utf8”) AS aim,convert(user.yahoo USING “utf8”) AS yahoo,convert(user.icq USING “utf8”) AS icq,convert(user.msn USING “utf8”) AS msn,convert(user.skype USING “utf8”) AS skype FROM wp_forumsuser AS user LIMIT 0, 50

    No users to convert

    No data to clean

    Starting Conversion

    mmice
    Participant

    Hello! I’ve been importing forum from phpBB *the v.1, so converters are not working for me and i’m working through the database.
    Well, – forums are showing, so do topics, – when i click on “Replies” in admin – i get no response from server. Yep, there’re about 7,5M replies there, but i guess it has to work despite of that fact?
    Those replies are shown in frontend and forums seem to work well.

    Another issue is: as i imported forums and topics to db – i could see them both listed at backend and frontend. But if i tried to come into the forum or topic on frontend i’ve got “not found”.
    Open forum in backend, then just “save” helped that.
    Bulk select topics, edit, changing nothing, just “save” helped that.

    What could be the reason? I couldn’t find any changes in _posts table @db. Maybe bbpress uses some other tables for it? Just couldn’t find it out.

    #162276
    viragohelpcom
    Participant

    Still haven’t been able to resolve this issue. Someone please help… I really like the ease of use of bbpress and do not want to have to use another solution. There are so many great plug-ins available for this and it is so adaptive.. I will be very sad having to remove it..=[ Surely someone has had this same issue. I didn’t try to add a theme yet either. I have been through my hosting account again and again looking through the PHP and other settings hoping to find something not right there but no luck. It is so darn weird that windows users cant post but Linux can. I am stumped what would cause such an issue……

    #162274
    Anonymous User 13290616
    Inactive

    Hi everybody,

    I’m absolutely new to bbPress. The thing is that right now I’m working on a WP + Enfold + bbPress project for a customer where the search box is always throwing this 403 message:

    Forbidden
    You don’t have permission to access /forum/search/ on this server.

    This is the corresponding URL.

    https://mywebsite.com/forum/search/?action=bbp-search-request&bbp_search=help-please

    All my Google researches have driven me to old bbPress discussions (6-8 years or so).

    Would you please be so kind to give me any tip to solve my 403 error?

    My web server is Apache and my WP theme is Enfold. Any help is welcome.

    Thank you so much!

    #162269

    Topic: force revision logs

    in forum Showcase
    GrantAdmin
    Participant

    Hi this is my first post here, I know my way around editing code but not a strong coder.

    I am wanting to edit bbpress so as to turn off the option for revision logs and have it as a default so all post edits must be recorded.

    Can anyone please guide me in doing this?

    I heave read around the forums and it seems everyone is wanting to do the opposite of this with their logs, but I need it as my wordpress/bbpress install is for official activities.

    thanks

    #162266
    Robkk
    Moderator

    This might help.

    https://wordpress.org/plugins/bbpress-role-deleter/

    other than that follow the uninstall process in tools > forums then reset forums

    greenhoe
    Participant

    I would like to know how to completely uninstall bbpress, I’ve looked it up and followed the instructions on many other pages and thought I had it all but under the user profiles we have at the very bottom a section called “Additional Capabilities” and next to it you can see the user role. Here is a screenshot of it

    admin profile

    I have tried running this and it doesn’t work, I have role plugins to view all my roles and it doesn’t show me any of the bbpress roles so I’m really sure why this is still showing up

    $wp_roles = new WP_Roles();
    $wp_roles->remove_role("bbp_role");
    $wp_roles->remove_role("bbp_blocked");
    $wp_roles->remove_role("bbp_keymaster");
    $wp_roles->remove_role("bbp_moderator");
    $wp_roles->remove_role("bbp_participant");
    $wp_roles->remove_role("bbp_spectator");
    
    #162262
    fmckinnon
    Participant

    OK – so there’s no widget or plugin to easily display the RSS feeds for bbPress then?

    #162260
    fmckinnon
    Participant

    DOh – sorry about that – I guess the staging URL redirect didn’t work like that.
    You can just go to:
    http://www.theworshipcommunity.com/staging/forums

    I know I can add a text widget and use some RSS icons and build links, but I’m curious where these feeds come from here in the sidebar at bbpress.org:

    Feeds

    All Recent Posts
    All Recent Topics

    I’ve searched the plugins and don’t see anything. I feel like I’m missing something OBVIOUS?

Viewing 25 results - 15,326 through 15,350 (of 64,518 total)
Skip to toolbar