Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 9,926 through 9,950 (of 64,473 total)
  • Author
    Search Results
  • #179730

    In reply to: Fetch different avatar

    Stephen Edgar
    Keymaster

    This sounds like bbPress should switch to BP’s avatars just as it switches to BP’s member profiles (rather than bbPress’ profiles) if the BP profile component is enabled.

    Anyone know of a plugin that does this?

    It sounds like bbPress should probably do this out of the box

    #179723
    ysiggen
    Participant

    So I am using bbpress alongside buddypress. This is great because running a little gaming community, it is awesome having the ability to use the widely know traditional forums as bbpress offers them while adding some great social features brought by buddypress.

    Now I’ve done my research and figured out that bbpress relies on the wp profile informations (since well wp and bbpress work great together). Aside of that, there is some synchronisation between buddypress and wp profile informations.

    What I’d like is be able to use only one avatar for both plugins. bbpress fetches the wp profile avatar while buddypress as one on its own. So my idea is to fetch buddypress’s image when displaying the user’s avatar on the forums.

    I tried to search for documentation on this and didn’t find much. I ended up digging the plugin code and stumbled upon, while looking in the /plugins/bbpress/includes/users/template.php file, bbp_current_user_avatar() which uses bbp_get_current_user_avatar() that calls get_avatar() with the desired size and user id.

    So I guess the obvious step is telling bbpress to look for the buddypress profile image rather than use this get_avatar() function, which I suspect is fetching the wp profile image.

    But I am stuck here, mainly because I am new to wordpress, also to php. I should be able to sort myself out with some indications (how and what to use) or even some pseudo code.

    I want to do this because I want people to not use their wp profile (there is not much there anyway) and rather go through their buddypress profile only.

    Thank’s in advance for any help.

    #179721
    martechnc
    Participant

    I just did the WordPress 4.7 update and noticed that the links to BBPRESS topics and replies are no longer in the menu.

    Has something changed?

    #179718
    senatorman
    Participant

    bbPress 2.6-alpha is very stable, that’s right.

    But still slow on huge forums, and gets slower by using big subforums.
    My site has 75K topics and 1.100K posts

    -posting takes ~5 to ~10 seconds (sometimes it hangs and takes almost ~50 seconds)
    -Forumindex takes ~5 seconds to load
    -Put topic/post to trash by modarator takes more than a minute
    -Delete topic/post from trash by moderator takes more than a minute

    I hope developers can find a good fix to make this, otherwise my forum has no future

    #179717
    Robin W
    Moderator
    #179716
    senatorman
    Participant

    I’ve edit the viewtopic in my old pbpbb forum in my sub-domain

    And do the personal DB settings, and nog i get this error

    Fatal error: Call to a member function free() on a non-object in /home/***/***/public_html/archief/viewtopic.php on line 48

    Is there a way to export al old and new urls to a csv file. So i can import this in my redirect plugin on my new forum?
    Google send many visitors with the old url that not can find on my new bbpress forum. So i can catch these visitors and redirect them

    #179706
    Stephen Edgar
    Keymaster

    @cmistico Could you create a new ticket for us to track this for you please.

    If you could include what version of HHVM you are using and any errors messages you see, also anything that you think will help us replicate your issue would be great.

    https://bbpress.trac.wordpress.org/newticket

    #179705
    jason92
    Participant

    Hello all, just imported a VB4 forums into bbPress. No errors. If I click on the Forums link to show all my forum categories (first image below), I see them all as they should be, along with a count of how many Topics and Posts there should be. Also shows when the last post was correct. However, when I click into the actual forum category (Advertisers for example, second image below), I don’t see any topics. The strange thing is if I do a search, I can see topics, replies, etc. I just can’t see them in the forums. Any ideas? Thanks so much.

    Image1

    Image2

    #179703
    cmistico
    Participant

    Hi all,
    I have this site
    http://www.analisidelsangue.net with bbpress forum here

    Dubbi sulle tue analisi? Fai una domanda sul forum

    (about 5k users and 20k post and replies)

    After switch to wordpress 4.7 I don’t see more the replies of forum in my backend
    I’m using HHVM instead of PHP 7.0– if I use PHP 7.0 all works properly.

    But I’d like to use HHVM because my blog is faster
    Please can you help me in some way?
    thnkx a lot
    alessandro From italy

    #179697
    Stephen Edgar
    Keymaster

    Please keep an eye on https://bbpress.trac.wordpress.org/ticket/3028 (Or #bbPress in Slack)

    I’m actively trying to resolve the as we speak and will post updates to that ticket

    Valery Kondakoff
    Participant

    Ok, have found this:

    The repair tool “Recalculate private and hidden forums” has a bug in it 🙁

    When that repair tool is run private and hidden forum are assigned both _bbp_private_forums and _bbp_hidden_forums statuses so this is why a user with the Participant role could not read a private forum as after that tool had been run it was also been given the hidden status also.

    The workaround for this is to do exactly what you did by “changing each forum from Private to Public back to Private” as this doesn’t touch the broken repair tool and sets the visibility status correctly.

    https://bbpress.trac.wordpress.org/ticket/2512

    So, “changing each forum from Private to Public back to Private” fixed my issue.

    #179687
    AITpro
    Participant

    Also I don’t know if this function I created to add capabilities did anything in combination with deactivating and activating bbPress, but this function was in my Theme functions.php file during the process of doing the deactivation and activation. 😉

    // bbPress Keymaster capabilities fix
    function aitpro_add_caps_bbp_keymaster_fix() {
    
    $capabilities = array( 
    		'keep_gate', 
    		'spectate', 
    		'participate', 
    		'moderate', 
    		'throttle', 
    		'view_trash', 
    		'publish_forums', 
    		'edit_forums', 
    		'edit_others_forums', 
    		'delete_forums', 
    		'delete_others_forums', 
    		'read_private_forums', 
    		'read_hidden_forums', 
    		'publish_topics', 
    		'edit_topics', 
    		'edit_others_topics', 
    		'delete_topics', 
    		'delete_others_topics', 
    		'read_private_topics', 
    		'publish_replies', 
    		'edit_replies', 
    		'edit_others_replies', 
    		'delete_replies', 
    		'delete_others_replies', 
    		'read_private_replies', 
    		'manage_topic_tags', 
    		'edit_topic_tags', 
    		'delete_topic_tags', 
    		'assign_topic_tags' 
    		//'test' 
    		);
    
        $role = get_role( 'bbp_keymaster' );
    	
    	foreach( $capabilities as $cap ) {
            $role->add_cap( $cap );
    	}
    }
    
    add_action( 'admin_init', 'aitpro_add_caps_bbp_keymaster_fix');
    #179686
    AITpro
    Participant

    Even funnier. All I had to do was deactivate and activate bbPress again. I usually do manual upload upgrading since in past versions of bbPress and BuddyPress my site would crash if I did a normal plugin update or even deactivating and activating bbPres and BuddyPress and I would have to restore the database. Anyway took a chance and no site crash and all capabilities were updated successfully. Yeah!

    eiln
    Participant

    I managed to reinstate the forums by deleting and reinstalling plugins in a particular order. It didn’t seem to work if they were installed or updated in a different order even if the end installed-active list was the same. I’m running genesis theme with a child theme and the issue started with upgrading to WP 4.7.
    Here is what I did which solved it, I do not know why (unfortunately):
    1. using ftp, I overwrote bbPress plugin with an old version dated 5/6/2015
    2. in the wp-admin area, under plugins, update the plugin to the current one
    3. in the wp-admin area, search for, find, install and activate the plugin ‘User Role Editor’. then the ‘Forums, Topics, Replies’ appeared in the sidebar of the dashboard
    4. then I could open tools/forums and could see the forum-fixing items here: https://codex.bbpress.org/features/tools/repair-forums/
    5. magically all seems to work now

    #179677
    AITpro
    Participant

    Oh well I give up for now. I can live without any bbPress backend menus since everything works fine on the frontend. I’ll probably look at this some other day. 😉

    persuadeo
    Participant

    Hi, for the record I have now uninstalled every plug in and tried the 2012 them approach, but have not been able to get bbpress going under either circumstance.

    Curiously, I also tried a different bulletin board plugin, and while their console did appear in the menu, their forums did not.

    Any leads?

    gameslopedy
    Participant

    Ive deactivated bbpress and all the other plugin once and reactivated again but forums doesnt appear , why?

    please look at it it gives page not found error:
    http://gameslopedy.com/forums/

    #179670
    AITpro
    Participant

    @vcgs – All the bbPress backend menus disappeared again after I refreshed the Dashboard backend for the first time after creating the new administrator/keymaster user account. So that must mean the usermeta data is being updated somewhere “after the fact” and that is the root cause of the problem. Very Rough General Example: If WP version is X then update Y usermeta data. At least I know exactly where I should be looking. So thanks for that. 😉

    outerk
    Participant

    Hello,

    Im working on a bbpress forum meant for businesses. I’d like to add a “company” field to the registration which input should show up on the bbpress profile page.

    I’ve been looking all over the place but cant find a solution. I found some simular problems but none are the same, or without answer. I did find some plugins which can takeover the login proces (like ultimate member) but none who can do what i want: add a custom field and show its input on the profile page.

    My theme is:Dynamix
    bbpress version: 2.5.11

    Anyone who had the same problem?

    #179665
    Helmuts
    Participant

    ran the wp update – never had your problems.

    my problem was: couldn’t see the forums in wp-admin and that was sorted by installing simple plugin “User Role Editor” as suggested here by Cydrop: https://bbpress.org/forums/topic/cannot-see-forums-tab-in-wordpress-dashboard/#post-140838

    #179660
    u_Oi
    Participant

    HI,

    I used to have this code in my forum to make it full-width.

    /* Hide SideBar in bbPress Profiles and Topics*/
    function disable_all_widgets( $sidebars_widgets ) {       
        if ( function_exists('is_bbpress') ) {
            if (is_bbpress()) {
                $sidebars_widgets = array(false);
                remove_all_actions('bp_register_widgets');
                unregister_sidebar( 'bp_core_widgets' );
            }
        }
        return $sidebars_widgets;
    }
    
    add_filter('sidebars_widgets', 'disable_all_widgets', 1, 1);

    Is there a way to apply full-width only for Forums and Topics (opened)?

    Thanks,

    #179653
    AITpro
    Participant

    Wierd and wierder. Somehow WP wanted to use the 2017 theme and killed the site. When I went forward to 4.7 the 2017 theme was activated, but at least the site was loading again. Switched back to my theme and the site still loads. So I guess I have to live without bbPress menus until I can figure out what is wrong. 😉

    #179651
    AITpro
    Participant

    Hey guys,
    I have the most current version of bbPress installed: 2.5.11
    Just installed WordPress 4.7
    These Top Level menus are not being displayed due to a “capabilities” issue. Forums, Topic and Replies. ie I do not have sufficient permissions to view those menus or any bbPress menus anywhere.

    If I go to the WP Dashboard and click links in the metabox I see this error: Sorry, you are not allowed to edit posts in this post type. I will be looking at forums/capabilities.php and other capabilities.php files to see if I can figure this out, but just wanted to give you a Heads Up about this. Of course this could be isolated to my sites. I deactivated all other plugins and the same issue is still occurring. So it does appear to be an issue directly with bbPress capabilities.

    #179650
    bradwabbott
    Participant

    Hi,

    I use ZotPress reference manager and the WP plugin. I would like to include the Zotpress plugin’s functionality for searching for the references I have already recorded in Zotpress and then insert them into my topic.

    I am just looking how to modify the topic post template in bbpress so that it shows this plugin interface for Zotpress.

    I have looked on the forum how to do this, but I cannot find how the bbpress template inserts the plugin interface for other plugins. This plugin’s reference insertion interface shows up in the standard worpress new blog template page fine. I would like to do the same for bbpress topic post template.

    I used wordpress 4.6.1 and bbpress 2.5.11. Any help would be really appreciated.

    Thanks,

    Brad

    #179648
    piratesjv81
    Participant

    Hopefully someone can point me in the right direction on this. Our site is trying to gain a functionality on its forums in which members can subscribe to specific sub-forums (in addition to topics). Maybe I’m incorrect, but it seems like bbpress offers this but whenever I create the sub-forums I don’t see the “Favorite/Subscribe”options in the top right. Any thoughts on how to add this for individuals sub-forum levels?

    Here’s an example: on the following page direct scheduling is a sub-forums that I would like to add the functionality to. ideally, if a user registers they will receive an email notification whenever a new topic is created in this specific sub-forum only.

    https://www.navao.org/forums/forum/navao-forum-bbpress-main/

Viewing 25 results - 9,926 through 9,950 (of 64,473 total)
Skip to toolbar