Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 22,026 through 22,050 (of 64,518 total)
  • Author
    Search Results
  • #142212
    Robin W
    Moderator

    There are probably much cleverer ways to do this but find the following file

    wp-content/plugins/bbpress/templates/default/bbpress/loop-forums.php

    On line 19 you’ll find the following

    <li class="bbp-forum-info"><?php _e( 'Forum', 'bbpress' ); ?></li>

    change the ‘Forum’ to whatever you want it to read.

    If you just change it in this location, it will be overwritten each time bbpress updates.

    What you really need to do is to put it into your theme – see

    Step by step guide to setting up a bbPress forum – part 3

    item 3 for how to do this, and part 2 of the guide (go to the codex home for this) discusses how to set up a child theme

    redkite
    Participant

    This happened in the last couple of weeks – level 1 and level 2 s2members can no longer see the original post in a bbPress forum topic, but they can see the replies. These level 1 and 2 members are Participants in the forums and can create their own topics, but now can’t see their own posts.

    Admins and level 3/4 members can see both the original topic and the replies.

    The forum posts are restricted to level 1 or higher.

    I found this (unresolved) thread on bbPress forums that describes exactly what’s happening here:

    first entry missing on single topic page // visible only for admin

    I’m on bbPress 2.5.3 and s2Member Pro v140105.

    #142209
    nidhibth
    Participant

    I have looked around a lot on this but didn’t get any workable solution.
    I accidently trashed a topic in bbPress and it went to trash. I went to trash to restore it.
    When I click Restore, it gives a fatal warning –

    Are you sure you want to do this?
    Please try again.

    Hence, I am unable to restore the trashed post. However, when I select the topic from the left checkbox and select do bulk “restore”, then it restores successfully. But in any case, I want to fix the issue of restoring it by clicking the Restore link as well.
    Please help. Urgent!!

    #142205
    JeremyCh
    Participant

    The idea that I got from https://bbpress.org/forums/topic/profile-user-specified-fields/#post-2670 is not working. Following is the function that I have added in my theme’s functions.php

    function get_profile_info_keys_personal() {
    	return array(	
    		'first_name' => array(1, __('First name')),
    		'last_name' => array(1, __('Last name')),
    		'nickname' => array(1, __('Nickname')),
    		'display_name' => array(1, __('Display name')),
    		'telephone' => array(0, __('Telephone')), 
    		'city' => array(1, __('City')), 
    		'facebook' => array(0, __('Facebook')), 
    		'linkedin' => array(0, __('Linked In')), 
    		'user_url' => array(0, __('Website')), 
    		'signature' => array(0, __('Signature')),
    		'dob' => array(1, __('Date of Birth')), 
    		'state' => array(1, __('Home State')), 
    		'occupation' => array(1, __('Occupation')), 
    		'organization' => array(0, __('Organization')), 
    		'income' => array(1, __('Monthly Income')), 
    		'education' => array(1, __('Education')), 
    		'degree' => array(1, __('Degree')), 
    		'profession' => array(1, __('Profession')), 
    		'description' => array(0, __('Biographical Info')), 
    		'user_login' => array(1, __('Username')), 				
    		'email' => array(0, __('Email')), 
    		'pass1' => array(0, __('Password')) 
    	);
    }
    add_filter('get_profile_info_keys',	'get_profile_info_keys_personal');

    And the second question goes, what would be the corresponding page for adding new members ?

    Thanks a lot for all your help.
    Best.

    #142204
    JeremyCh
    Participant

    Hi guys

    I was trying to have some more custom user fields in http://www.domain.com/forum/users/user/edit/.

    I could see that I can add more fields using form-user-edit.php – however, they are not getting saved on submit.

    That means, I need to add the new variables in some other file in order to get them saved.

    Can anyone help ?
    Best.

    PS. I have read in some places that something like add_filter(‘get_profile_info_keys’, ‘get_profile_info_keys_personal’); would work. I tried that and this is not working, I mean, nothing is getting saved from the extra custom fields.

    WP: 3.8.1
    BBPress : 2.5.3

    #142203
    gwenm
    Participant

    Hello, I can not seem to translate into french. I use bbpress 2.5.3 and Poedit.
    I use the po file available in /bbpress/languages/bbpress.pot. after translation, I save my file as fr_FR.po, then I transferred to the languages​​, but the change does not appear. I emptied all caches.
    Thank for your support

    #142201
    Bob1nz
    Participant

    @kaliceos You are a legend!! thank you so much for sharing this. Finally my bbpress resembles a somewhat “normal” layout

    #142200
    craftersuniversity
    Participant

    When i get notifications from bbPress that a topic has gotten a reply, the address to the forum page is in pure text and not clickable…is this intended or a bug? How can it be changed to a clickable link?

    #142198
    craftersuniversity
    Participant

    Hello

    I just noticed a problem that i don’t know how old it is. I have not had much activity on my sites forum area, and no replies to any topics, so this problem might be as old as the forum itself.

    When i try to make a reply to a topic, the reply get saved in the database, but i get a completely blank page. Even when i check the “page source” it too is completely empty. If i hit reload, another copy of the reply is entered into the database, but still a blank page. However, if i click the browsers address bar and hit enter, then i get the correct page, the updated forum thread. This is true both on my official site CraftersU.com, and its dev site.

    I have tried both Chrome and Firefox, same thing. I’ve deactivated all plugins except BuddyPress and bbPress, same thing. Different themes, same thing. I even deleted and re-installed bbPress without getting rid of this problem…What could possibly be the cause of this?

    Wordpress 3.8.1
    BuddyPress 1.8.1
    bbPress 2.5.3

    You are of course welcome to register as a user in order to test this bug for yourself.

    #142197
    nishantkashyap23
    Participant

    I installed bbpress on my website and while I get the forums on my backend, I do not see any backend menu for the bbp user profiles (all I have is the default WP user profile) – is that how it is suppose to work? Are users suppose to just edit their profiles from the front end only? Also, if I just want to use the default wp profiles for the forum how do I do that? Further, how do I disable links to the user/author profile in the forums? (Sorry if the questions seem to too naive, I am a WP/BBP newbie)

    angslycke
    Participant

    Hi!

    I’m using bbPress 2.5.3 and BuddyPress 1.8.1 and loving it, however there’s something I miss.

    When I visit a users profile in BuddyPress I can click to show that users started forum threads and his/hers replies in other threads. The replies page only lists the users replies and there’s no link to view the entire discussion. This makes it really difficult for another user to reply in that discussion.

    Should this be a core feature to lower the threshold for additional replies in forum threads?

    Thanks in advance!

    Gokuuu
    Participant

    Hey guys, i’ve installed the BBpress plugin last version 2.5.3 while running latest wordpress 3.8 version, and i had nothing in the dashboard, no tab, nothing related to BBpress.

    I’ve deactivated all my plugins and set up basic wordpress theme.
    I figured out that once i activate WPML Multilingual CMS, the three tabs related to BBpress : forums, topics and replies disappear from the dashboard…but i can still access to the forums, the pages are still available, because i’ve created it so i could test, the only issue is that if i want to create new category or anything else, i need to deactive my WPML plugin so the BBpress tabs appears again, and then reactivate and so on…

    I can’t run my website without the WPML Multilingual CMS plugin because i run a multilingual ecommerce and most of my contents is translated in two languages…

    So just wanted to let you know the issue in case it was unknown, and you might know what i can do for it ?

    Meanwhile i would have to found another forum plugin πŸ™

    Thanks in advance and Have a nice day πŸ™‚

    #142194
    Gokuuu
    Participant

    Hey guys, i’ve installed the BBpress plugin last version 2.5.3 and i had nothing in the dashboard, no tab, nothing related to BBpress.

    I’ve deactivated all my plugins and set up basic wordpress theme.
    I figured out that once i activate WPML Multilingual CMS, the three tabs related to BBpress : forums, topics and replies disappear from the dashboard…but i can still access to the forums, the pages are still available, because i’ve created it so i could test, the only issue is that if i want to create new category or anything else, i need to deactive my WPML plugin so the BBpress tabs appears again, and then reactivate and so on…

    I can’t run my website without the WPML Multilingual CMS plugin because i run a multilingual ecommerce and most of my contents is translated in two languages…

    So just wanted to let you know the issue in case it was unknown, and you might know what i can do for it ?

    Meanwhile i would have to found another forum plugin πŸ™

    Thanks in advance and Have a nice day πŸ™‚

    #142191
    Debayne
    Participant

    If anyone else has this problem

    This is an issue with bbPress, it loads the content-search.php template from the theme directory, which is wrong. An easy fix is to rename the content-search.php file in your theme directory to content-searchresults.php and then change this line in search.php:
    get_template_part(‘content’, ‘search’);
    to this:
    get_template_part(‘content’, ‘searchresults’);

    A big thanks to Trevor over on the Artisteer Forums

    #142187
    FlyFishersCorner
    Participant

    EDIT note: Running bbPress 2.5.3 on WordPress 3.8.1
    My theme does not support sidebar widgets, so I instead created a page to house my forums. Additionally, I like the idea of being able to add some content above the forum index. I am running everything through a child theme.

    EDIT note: The breadcrumbs display in the bottom right of the header, in case it’s not obvious when looking.

    As it stands, I’ve added a login box and some content to the page, then used the [bbp-forum-index] shortcode to add my forum index. See the page here.

    Clicking into the first forum, “General Fishing Discussion” (my site is a fly fishing related one), I have no issues. The breadcrumbs can get me perfectly back to the page where the index resides. See here.

    Finally, I have created a couple test topics. Once I click on one of those topics, this is where my problem arises. Instead of the breadcrumbs being Forum>General Fishing Discussion>Topic Title, they switch to Home>Topic>Topic Title. Clicking the Topic link takes me to a 404 page. See it here.

    I’ve been tinkering with this for days, trying several different solutions from this site that I thought might work. The most recent was a fix suggested about two weeks ago whereby I copy the page.php file from my theme folder and rename it to bbPress.php to force bbPress to use it. I have seen no change. I will note that I tried placing it in the theme-child folder as well as the theme-child\bbPress\default folder. Neither worked.

    The other fix I tried that I thought might get me there was one posted here about 4 months ago that offered a replacement code for the loop-forums.php. Unfortunately, that didn’t work either.

    Does anyone have any other ideas? I really appreciate any help you guys can offer! I love the look and integration of bbPress, I just can’t have users running into walls after reading a topic and trying to navigate back out to other forums.

    Thanks in advance!

    #142186
    gillis
    Participant

    I’m finding it very tricky to import my Vanilla forum to bbPress 2.5.3 on WordPress 3.8.1. I was not completely sure about the settings to use for the import, and so have tried every combination I can think of, but to no avail. The conversion still results in:
    No users to convert
    No passwords to clear
    No forums to convert
    No forum parents to convert etc etc.
    My site is http://www.wansteadium.com, and my vanilla forum is at /talk.
    Any suggestions or links would be much appreciated.

    #142185
    neo82
    Participant

    Hi bbpress forum,

    How can i do this?

    I use bbpress 2.5.3 and wordpress 3.8…

    Thanks for help. πŸ™‚

    #142184
    neo82
    Participant

    I searched a white with google, and yeah – now i found this post! But this doesn’t work… Can anyone help please?

    I use bbpress 2.5.3 and wordpress 3.8

    #142181
    homeschoolmommy
    Participant

    I have no problems when creating groups, but when I create a new topic and click on that topic it opens up but I get a blank white page.
    I have disabled all plugins
    change the theme to deffault
    nothing same problem presist

    bbpress-Version 2.5.3
    buddypress-Version 1.9.2
    website-http://gossip-moms.com

    can someone point me in the right direction Thanks

    #142179
    Kris35
    Participant

    Anyone know if theres a compatible wysiwyg editor for forum posts? I want my members to be able to upload images from their computers. Thanks.

    #142178
    Norman
    Participant

    Hello,

    Currently my bbpress forums do not show any information underneath an author info:

    http://screencast.com/t/MWpsfe4S

    I am wondering how I can turn on this so I can display more info, such as name, user name, type of user etc.

    This is an live example:
    http://contactpoint.ca/groups/open-contactpoint-group/forum/topic/why-career-development-matters-round-2/

    Thank you,

    #142177

    Exciting news!

    The forum was imported successfully to a test development site.

    I used the plugin “Export Users 2 CSV” by Yoast ( https://wordpress.org/plugins/users-to-csv/ ) to import users.

    Then I used a modified version of Import Users by DagonDesign ( http://www.dagondesign.com/articles/import-users-plugin-for-wordpress/ ) to import the users.

    Important Note: When importing users with this plugin it WILL send notification emails to the Admin and the User. I ALMOST pressed “go” on importing 2,200 users — but then I decided to check the plugin code just in case; sure enough there’s this line of code wp_new_user_notification($user_id, $password); you should delete or comment out.

    Yes, the users will have to re-create their passwords. We will instruct them how to do that on the new forum. That’s perhaps the only drawback of this method. But since out of the 2,200 users there are perhaps only 100 current active users, it shouldn’t be too much of a hassle.

    I did have to write a custom PHP script to help this user export/import process, because the import and export plugins do not match in formatting. You can either do this custom in CSV or make a simple PHP script (took me 10 minutes) to take data from the export CSV and reformat it to meet the delimiters and the stricture of the import CSV. I can help people with this, just ask.

    This user import/export had to be a separate process because using bbPress Export and Import by PippinsPlugins ( https://github.com/pippinsplugins/bbPress-Export-and-Import ) did not properly attribute users to posts if it had to create the user. (It attributed the admin to most of the posts.)

    After the users were imported, I imported my 20 CSV files (~2,000 rows each file) and after much scrutiny in examination, I find that all users have been properly attributed to posts.

    Now all that’s left is performing this process again onto the live site, the fresh bbpress install. (Remember, always back up your site and database before you do this stuff.)

    #142174
    jmessick
    Participant

    I have a bbPress installation with several forums and topics. I can enter replies and it appears to be saving the post when I click on Submit but the post never shows up, and it does not show up via the dashboard either. What gives and how do I fix this? Thanks.

    sontru
    Participant

    If we run bbPress on a subsite of a WordPress Multisite installation, administrators of the subsites can’t change a user’s capability. Has anyone written a plugin to allow admins to change a user’s forum role?

    #142169
    jmessick
    Participant

    I have the bbPress Login Widget on my forum page, but when a user logs in it takes them to the dashboard. I want them to stay on the forum page. Also, logging out takes the user to a generic WP login page, and logging in from that also takes the user to the dashboard. Is there any way to keep the user on the page the log in or log out from? Thanks.

Viewing 25 results - 22,026 through 22,050 (of 64,518 total)
Skip to toolbar