Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 24,551 through 24,575 (of 64,518 total)
  • Author
    Search Results
  • #136667
    logicbit
    Participant

    Installed latest from add new. Now website or admin panel does not load.
    After clicking activate plugin this URL is displayed and hangs. Nothing but a white screen.
    http://houdiniesq.com/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1&s=

    Had to remove bbPress folder from plugin directory in order to get our site back up.
    Tried manual install of plugin but same thing.
    We are using the FLexForm by swiftIdes ver 1.5 theme which is great and works wonderfully.

    #136665
    Thorsten :-)
    Participant

    @netweb

    Hi Stephen,

    thank you for your update but it doesn’t work, see screenshot http://www.screencast.com/t/LFaiSPT1KER

    The bbPress widget recent topics shows posts of hidden buddypress groups if buddypress integration is chosen.

    It would be great to stop this – thank you!

    Best Regards,
    Thorsten

    #136664
    Tecca
    Participant

    In your CSS file.

    #136663
    Nashwan D
    Participant

    The bbPress downloads page needs an update:

    Download

    #136662
    logicbit
    Participant

    Had to remove bbPress folder from plugin directory in order to get our site back up.

    Tried manual install of plugin but same thing.

    We are using the FLexForm by swiftIdes ver 1.5 theme which is great and works wonderfully.

    #136660
    MediaSVI
    Participant

    Where do you put the code?

    #136659

    In reply to: SMF Import to bbPress

    Remco Beugels
    Participant

    First of all thanks for working on this great importer for bbPress 🙂 .

    But I have one question:
    When do you think the final version is ready (or when is password support ready)?

    And an idea:
    Maybe BuddyPress integration, for example: SMF Avatars to BuddyPress / bbPress avatars? And the custom fields from SMF to the BuddyPress profile?

    Finally:
    Sorry for my bad English 🙂 (powered by Google Translate) and thanks to all the people who are working on this.

    #136658
    dot
    Participant

    Wordpress 3.6, using theme Twenty Eleven
    BbPress 2.4 (Just updated this morning, though I had the problem with the previous version as well)
    Only other active plugin: Error Log Dashboard Widget 1.0.2 (showing no PHP errors)
    Several other plugins are installed, but deactivated while trying to debug this issue.

    I have the following text on a single page:

    
    Here is the shortcode for the single forum: [ bbp-single-forum id=39 ]
    
    [bbp-single-forum id=39]
    
    Here is the shortcode for all forums: [ bbp-forum-index ]
    
    [bbp-forum-index]

    The single forum does not display. The forum index does display. I have confirmed that the index is the correct number via the admin forum view. Here is a link to a screenshot. Here is the link from the forum page, showing the forum id: http://[domainremoved].org/wordpress/wp-admin/post.php?post=39&action=edit (Obviously, clicking it won’t work, because it requires a log-in, but this is to confirm that I’m finding the forum index correctly.)

    Here is the forum: http://[domainremoved].org/forums/forum/pta-board/
    Here is the page it is linked from, showing where the shortcodes do not work: http://[domainremoved].org/pta-board-2/
    (Note: I have added spaces between the shortcodes so you can see the text that I used, then repeated the shortcodes without the spaces to display the forums.)

    I feel like this should be some really simple user error, but given that I have double-checked the shortcode syntax and the forum id, deactivated all other plugins, and chosen the Twenty Eleven theme, I can’t figure out what it could be.

    ETA: Wow, that was fast— my page got slammed with spam comments within minutes of posting the links here. I have removed them for now. If a support person needs them to diagnose the issue, I can give them out then.

    #136657
    FreeWPress
    Participant

    Hi, great job guys.. 😉

    I have a little problem with widget in sidebar, it not show the date and the author.. after upgrade to 2.4

    It is only a my problems? Thanks…

    #136656
    Xevo
    Participant
    @media (max-width:767px){
      .bbp-reply-author { float: none; }
      .bbp-reply-content { margin-left: 0; padding: 12px; }
    }

    Something like that.

    #136655
    MediaSVI
    Participant

    Is there a way to edit the code to make this happen?

    #136654
    janhoos
    Participant

    haha yea! So far for me, BBpress is a mixed bag. Its simple alright! You need to add in a lot of stuff to make it come near the other forum softwares. But the big advantage is the integration with WordPress <3

    #136653
    ovizii
    Participant

    And here I was thinking tis just me who’s unhappy with the built-in widgets.
    I used to love the bbpress versions below 2.x – there where plenty of plugins available to it to make it jump through loops and hoops but since 2.x most of those don’t work anymore.

    I’m just wondering that nobody except you is interested in this issue 🙁

    #136652
    Guru
    Participant

    Anyone out here knows what to put in the navigation bar to re direct the user to his bbpress profile?

    #136648
    la_chouette
    Participant
    #136647
    kriskl
    Participant

    Hello!

    Does anyone know how to add; Favorites + Subscriptions to the menu.. like it is on bbpress site?

    #136646
    kriskl
    Participant

    Thanks for a nice release.

    Upgrade went smoothly.
    although, it seems my child theme blocks hierarchical replies’ 🙁

    but not a problem for now. glad about the small speed improvements

    #136645
    kriskl
    Participant

    yhmm something strange happened to that code.. 🙁

    #136644
    kriskl
    Participant

    After weeks trying to find something that would work, I found the code on wordpress forums to remove completely gravatars (and redirects it was causing.. )

    here is it:

    
    function bp_remove_gravatar ($image, $params, $item_id, $avatar_dir, $css_id, $html_width, $html_height, $avatar_folder_url, $avatar_folder_dir) {
    	$default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg';
    	if( $image && strpos( $image, "gravatar.com" ) ){ 
    		return '<img src="' . $default . '" alt="avatar" />';
    	} else {
    		return $image;
    	}
    }
    add_filter('bp_core_fetch_avatar', 'bp_remove_gravatar', 1, 9 );
    
    function remove_gravatar ($avatar, $id_or_email, $size, $default, $alt) {
    	$default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg';
    	return "<img alt='{$alt}' src='{$default}' height='{$size}' width='{$size}' />";
    }
    
    add_filter('get_avatar', 'remove_gravatar', 1, 5);
    
    function bp_remove_signup_gravatar ($image) {
    	$default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg';
    	if( $image && strpos( $image, "gravatar.com" ) ){ 
    		return '<img src="' . $default . '" alt="avatar" width="60" height="60" />';
    	} else {
    		return $image;
    	}
    
    }
    add_filter('bp_get_signup_avatar', 'bp_remove_signup_gravatar', 1, 1 );
    
    

    As I am now planning to disable buddypress completely. I am looking for an easy way to let users upload their avatars in bbpress, anyone tried it already?

    #136643
    la_chouette
    Participant

    Hello

    Since this update, I can not publish or respond to a topic with the moderator or administrator status.

    Regards

    #136641
    Sam Rohn
    Participant

    hmm, i just noticed the same thing on one of my test sites still site running 2.3.2, no bbpress admin tabs except for gd sub items, so i suppose this is OT for 2.4, must be something on my end, sorry

    thanks for the update on permissions, Tehnik-bbPress-Permissions seems to be the best solution for now but i am always afraid it might break with a bbpress update, and it requires yet another plugin besides…

    https://github.com/ZanderAdam/Tehnik-bbPress-Permissions

    #136639
    Stephen Edgar
    Keymaster

    I cannot reproduce the issue of missing bbPress wp-admin panels with any of these plugins: GD bbPress Attachments, GD bbPress Tools, GD bbPress Widgets, that’s not to say it isn’t happening. I will keep an eye on Milan Petrovic’s Twitter feed to see if he comes across any issues himself.

    Permissions and caps with bbPress is a hard (for me anyway) to grasp at a code level, I do know that essentially bbPress is ahead of WordPress in some ways in this aspect and the fact that bbPress is built on top of WordPress this is going to constantly evolve. The ‘other’ forum packages that are available do have finer granular permissions but none of them integrate with WordPress the way bbPress does (I am up to my 27th forum converter now BTW).

    These bits will come, hopefully sooner rather than later and the dev’s that contribute code for bbPress are acutely aware of this type of feature request and I am quite sure it is kept in their mind as code is written for anything for example as mentioned above ‘Per-forum moderation’ & ‘Forum subscriptions’ slated for bbPress 2.5, these two features alone make for a great start in getting more of the types of features you are referring to.

    “bbPress is forum software with a twist, from the creators WordPress”

    #136638

    In reply to: BBPress – Post Count

    kimbo_king
    Participant

    Anyone have any idea?

    #136637
    Sam Rohn
    Participant

    thanks stephen 🙂

    might not be a bad idea to put the changelog info or link in top post too, the trac might be kind of confusing for the less experienced

    i have updated to 2.4 from 2.3.2 on a few different test sites and have noticed that in some cases, the forums, topics and replies tabs in wp admin disappear, w gd tools and attachments plugins enabled only gd options in forum tab otherwise no forum tab at all, or the others

    i tried disabling all other plugins etc but only disabling and reenabling bbpress restored the tabs

    main site i updated went fine, admin tabs did not disappear, mostly same plugins, the sites that went odd also all had buddypress installed

    for permissions and caps etc, i think it should be a basic feature to have a simple way to create multiple levels of private forums for logged in users – private forums for admins, mods, members, public forums for non-members, etc, basically some type of granular permissions allowing groups and forum access per group membership based on wp user role perhaps, similar to phpbb etc, this is standard w most other forums but currently this is still real tricky w bbpress…

    any chance we might we see something along these lines in an upcoming release ?

    #136636
    aihoi
    Participant

    Thanks for your help!

Viewing 25 results - 24,551 through 24,575 (of 64,518 total)
Skip to toolbar