Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 3,876 through 3,900 (of 6,794 total)
  • Author
    Search Results
  • #133531
    kraigg
    Participant

    @ovizii

    It could be one of your plugins that is blocking regular users from posting. I had a similar problem last month and I thought it was a bbPress problem, but it turned out to be another plugin.

    If you have a production version of your website, try to deactivate all of our plugins except bbPress and User Role Editor. Also try to switch back to the default theme, just to confirm that it’s not something in your functions.php that is causing problems. What version of bbPress and WordPress are you using?

    The other thing to try is to use User Role Editor to add capabilities to your Participant role, and keep adding until it fixes the posting issue. Then at least you’ll be able to pinpoint the capability that is causing the problem. But first make sure to create a backup of the Participant role so you can revert back to it.

    #133453

    Looks like it did change, but only for the positive in this regard:

    https://bbpress.trac.wordpress.org/changeset/4336

    #133452

    My guess is no; or that the default option value changed in 2.3 (I don’t recall) and there is no option in the DB.

    #133447

    Do you have auto role set in the bbPress settings?

    #133444
    Jeff Farthing
    Participant

    Ever since I have upgraded to 2.3, new users are not assigned the default forum role.

    WP Version: 3.5.1 (Multisite)
    bbPress Version: 2.3

    http://www.jfarthing.com/support/

    Chip Bennett
    Participant

    Upon update to bbPress 2.3, I appeared to lose a considerable amount of my style customizations. To isolate the issue, I manually enqueued [theme]\css\bbpress.css, and all styling returned. So, it appears that the issue is merely that this file is not getting enqueued by bbPress.

    As it turns out: I have a bbpress-functions.php file in [theme]\bbpress, which was taking precedence over the Plugin’s templates\default\bbpress-functions.php file, which handles the stylesheet and script enqueueing.

    Apparently, unlike with WordPress Child Themes, in which the Child Theme functions.php merely loads *prior* to the template (Parent Theme) functions.php, with bbPress Theme compat, if the Theme includes \bbpress\bbpress-functions.php, that file will take *precedence* over the Plugin’s \templates\default\bbpress-functions.php file, and prevent it from loading at all.

    The solution is simple: if you include a functional file (e.g. for adding/removing various filters) as part of your bbPress Theme compat, don’t include it as [theme]\bbpress\bbpress-functions.php file. In my case, I renamed that file as [themename]-bbpress-functions.php, and the problem was resolved.

    Hopefully this will help someone else who encounters the same issue.

    #133387
    Mudstacle
    Participant

    Hi there,

    I’ve got a forum that doesn’t show, I believe it is a theme issue as default wordpress theme works okay, I’m running ExtremeSport 2.0 from http://smthemes.com/ ( http://smthemes.com/extremesport/ )

    It worked okay with 2.2.4 I’m not sure where to start looking for the issue (I’m a c# developer by trade ๐Ÿ™‚ ).

    #133378
    kraigg
    Participant

    @ovizii

    How I got it working was to set the Forum Role for all existing users (non-admin) to โ€˜Participantโ€™. I did this in Dashboard > Users > All Users, then found the users that had no forum roles. Once I changed these users to ‘Participant’ they were then able to post again.

    To automate this process, I set ‘Participant’ as the default forum role for users. I did this in Settings > Forums
    “Default user role”: Participant
    “Auto role”: (tick) Automatically assign default role to new, registered users upon visiting the site.

    However I think this problem may have been fixed in the latest bbPress

    #133371
    Michael4fm
    Participant

    Can anyone help me with sizing of navigation tabs?

    Using:ย  WordPress 3.5.1, BuddyPress 1.7, Montezuma (Bytesforall) theme. Difficult to ‘just switch’ to Twenty Ten / Twenty Eleven as it’s a ‘presentation’ problem.

    I’m trying to resize BP navigation tabs to match others I’m using – see this example. As you can see, I’m managing to resize the ‘sub menu’ navigation, but not the ‘top level’ … even though they’re using (as far as I can ascertain) exactly the same CSS classes, ID, etc.

    I’ve played with CSS in the Montezuma theme, in BP Template plugin, and in ‘default.css’ in the main BP plugin. Can anyone suggest where I should be looking? Driving me mad that I can’t crack what should be such a simple thing!

    #133334
    smithgt
    Participant

    Simple noob question, but where do I specify the default page template for the forum? I need to switch for a FullWidth Template.

    thanks

    #133305
    premitheme
    Participant

    Okay, not sure if this is the reason, but after your last reply a searched a little bit, found this ticket https://bbpress.trac.wordpress.org/ticket/2070 and started to think that it’s a problem in the URL.

    The only difference between XAMPP and MAMP (free) is that XAMPP uses “localhost” host name, while MAMP (free) uses “localhost:8888” when using MAMP ports by default (MAMP pro uses “localhost” that tell why it works OK with you). So I went to MAMP preferences and changed the ports settings to use default Apache and MySQL ports to use “localhost” instead of “localhost:8888”, and finally posting topics and replies is available again ๐Ÿ™‚

    Even better I setup a virtual hostname manually in MAMP (free) and the everything works fine.

    I hope this will help others with the same issue with MAMP (free). Thanks for your time @johnjamesjacoby and @netweb, great work and keep it up.

    #133288

    Not entirely sure how you arrived at that solution, but I can’t imagine any of it ever working correctly. ๐Ÿ™‚

    The wp action happens before WP_Roles is called, so it’s too soon in the stack. You’re also missing a bunch of sanity checks that bbp_set_current_user_default_role already does for you; no sense in duplicating only some of that work.

    You could try hooking into init but, again, I suspect something in the iMember360 plugin is interfering and won’t allow that to work correctly either.

    You *should* actually be debugging the setup_current_user action, to see if bbp_set_current_user_default_role is even firing, and if it is, where it’s failing.

    If you’re looking for a brute-force kludge, something like this is probably closer to what you need:

    function earthman_force_current_user_caps() {
    	global $current_user;
    
    	// Only for logged in users
    	if ( ! is_user_logged_in() )
    		return;
    
    	// Reload the current user with correct capabilities
    	$current_user = bbpress()->current_user = get_user_by( 'id', bbp_get_current_user_id() );
    
    	// Try to give them a role on the site, if they need one
    	bbp_set_current_user_default_role();
    }
    add_action( 'bbp_template_redirect', 'earthman_force_current_user_caps', -99 );
    #133287
    Earthman Media
    Participant

    Well I got this far, but every time I try to call the function you suggested, or try to add the role manually, it breaks. Any ideas what I might be missing, please?

    
    add_action( 'wp', 'bbp_check_user_role_on_load' );
    function bbp_check_user_role_on_load() {
    	global $user_ID;
    	
    	//do they have a role set already?
    	$has_bbp_role = bbp_get_user_role( $user_ID );
    	if(!$has_bbp_role){ //nope, add default BBP role 
    	
    		//tried this but it breaks it
    		//bbp_set_current_user_default_role();
    	
    		// Load up bbPress once
    		$bbp = bbpress();
    		$new_role = 'participant';
    		
    		//this breaks too - wtf?
    		//$bbp->current_user->add_role( $new_role );
    		
    	}	
    }
    #133276

    @earthman100 – Search for `bbp_set_current_user_default_role` – it’s hooked to `bbp_setup_current_user`, which is hooked to `setup_current_user`, which seems odd that any plugin would bypass completely, since pretty much everything a user does is linked to it.

    Which is to say, I don’t think manually handling the login or user-creation process is the problem; I think this plugin is `_doing_it_wrong()` by invoking the current user far too early, before bbPress ever has a chance to hook in.

    #133250

    Anyone having issues with MAMP, I run MAMP Pro locally, and have used it to develop bbPress since years back. MAMP isn’t the issue, something else is, and it should not have changed between bbPress 2.2 and 2.3.

    For people having issues accessing the administration area, your account needs the “Key Master” role to access the “Forums” menu, and at least “Moderator” to access “Topics and “Replies.”

    • In the past, these checks were using the `is_super_admin()` function, which would default to users with the “Administrator” role on single-site installations.
    • Those that have fixed it using the auto-role setting, bbPress is automatically granting Administrators the Key Master role.
    • Auto-role should most likely be turned on anyways; it’s only a setting to allow site-owners the option to let other role plugins handle that instead.

    People wanting to go back to using an old version of bbPress, I’d highly advise that you troubleshoot your installations and stick with 2.3. Rolling back is a temporary fix that doesn’t help track down what’s going on; when we’re willing and available to help you figure out what is going on, it’s best to take advantage of the free support instead.

    #133220
    Stephen Edgar
    Keymaster

    @alexiousrahl Search is enabled by default, you should be able to see the search form at the top of your forums list eg. http://example.com/forums/

    I have also updated the Shortcodes and Widgets codex pages.

    #133197
    WayneM1
    Participant

    With the most recent botnet attack on WordPress powered websites, I’m (once again) reviewing the measures I take to secure my WP installations.

    Most WP admins understand the importance of not using the default “admin” username when setting up a site. Many WP admins do not realize that simply using a different main admin username is not enough. That username should be “obscure” (not easily guessed) and it certainly should not be the same as the publicly displayed “nickname” that is associated with the user account. Those need to be different – this helps to prevent bots and bad people from getting the first part of your login credentials = your username.

    While I been taking action to ensure this is the case on the WP sites I manage, I’ve noticed a problem with the way that bbpress displays username information. Even if a user has a “nickname” that is different from the actual username – when you hover over a link to the user’s profile the URL will show the actual username (the one you are trying to hide through obscurity).

    There is an older thread on the WP forums that seems to suggest that this is not a WP core issue, but rather a plugin/theme coding issue. I don’t know if that is correct, or not. But, it is an issue in any case and needs to be addressed.

    #133189
    atburi
    Participant

    @dpmcalister very strange. Once I went to Settings / Forums / and ticked the check box:

    “Automatically assign default role to new, registered users upon visiting the site.”

    then saved, the ‘Forums’, ‘Topics’, and ‘Replies’ admin menus showed up.

    Guess this is a bug they’ll fix shortly, but for now there’s a quick fix!

    #133092
    WayneM1
    Participant

    I’ve tried three different themes including the default buddypress theme and 2012, deactivated all other plugins, etc…

    There is no bbpress forum search box showing up on my site. I’ve removed and reinstalled bbpress and buddypress a couple times, too.

    Any ideas?

    I can’t even find a setting for the search box – like show/hide (if that’s even an option).

    Help?

    #133080
    Fraternity
    Participant

    moebis – just took a look at this, I may have a more recent version than you use in your fix above.

    Here is how to play with my hack in the latest trunk:

    EDIT: /bbpress/includes/extend/buddypress/group.php

    Delete lines 609-614 and add โ€œ?>โ€ back to line 609.

    The code I have at these lines is this:

    <?php bbp_get_template_part( ‘form’, ‘topic’ ); ?>

    <?php else : ?>

    <?php bbp_get_template_part( ‘feedback’, ‘no-topics’ ); ?>

    Probably not what I want to comment out. What I did find though is this (lines 567-581):

    // Suppress subforums for now
    add_filter( ‘bbp_get_forum_subforum_count’, ‘__return_false’ );

    // Set up forum data
    bbpress()->current_forum_id = $forum->ID;
    bbp_set_query_name( ‘bbp_single_forum’ ); ?>

    <?php

    // Remove the subforum suppression filter
    remove_filter( 'bbp_get_forum_subforum_count', '__return_false' );

    Group Subforums

    I highlighted a few things:
    1) Topics are only being displayed from group subforum 2 (believe you mentioned this above). This should be easy enough to fix
    2) I thought I was posting in the Group Forum when I used the default form below, but clearly (as per highlight 3) this is now set to group subforum 2
    3) Default Create New Topic is set to Group Subforum 2. I assume this was the “last retrieved forum” and is probably easy enough to fix. In my case, I’ll probably be changing my group forums to a category anyway, so I don’t actually want people starting new topics from this page.

    #133062
    boki_
    Participant

    Hello. I’ve just switched from wampserver to ampps by softaculous, because it’s python/perl default integration, and I’ve also noticed their script installer. And there is WordPress in CMS/blog scripts, and also bbPress in forum scripts. I was curious, and I’ve installed bbpress, and this isn’t a wordpress with bbpress plugin already installed, but it’s only bbpress, standalone, strict forum without pages, posts, everything that wordpress has, but only with very similar to wordpress file structure and dashboard. But here it can be only downloadable as a plugin, and I’ve also see this nowhere yet… Is this maybe a softaculous’ “version”, that they integrated a plugin in wp engine, so that plugin can run? It’s very interesting thing, but it’s limited extendability bothers me, you can’t install new themes or plugins.

    I’m now confused with this “standalone” bbpress, anyone knows more about this?

    Thanks

    #133060
    lucop1
    Participant

    Hi,

    i’ve just installed buddypress 1.7 and bbpress 2.2.4.

    I created a custom theme for bbpress doing the following steps:
    1. create a folder bbpress inside wp-content/themes/mytheme/
    2. moved all the php files that were inside plugins/bbpress/templates/default
    3. moved the css file inside wp-content/themes/mytheme/css/

    after that

    I turned on the functionality to include the bbpress forum inside buddypress groups but I found and issue with the topic subscription and add to favorites.

    Because when i click on that link in the single topic view it open a blank page.
    I checked the bbp-function.php files stored in plugins/bbpress/templates/default and I found that it enqueue all the ajax function for the topic subscribe option and add to favorite options.

    But when I go the forum page inside BuddyPress Group and open the source code I don’t see any enqueue ajax files or functions.

    So what should I do to let it works?

    thanks

    #133040
    lasticko
    Participant

    Thank you but I’m not looking to get my hands too dirty under the hood with CSS/PHP.

    Arent there any drop-in solutions to just make them look cleaner / nice?
    The default look/feel is very clunky.

    Thanks again in advance

    #133033
    serpini
    Participant

    Hello,

    I just installed bbPress 2.2.4 version on a wordpress version 3.5.1, I wish you all the forum pages were full size without displaying the sidebar, I’ve searched the forum and the solution of copying the full-width page to bbpress.php I have not worked or have not done it correctly.

    Would I could say how I can make the forum will be full size? and steps for a beginner.

    I use the WordPress default theme Twenty Twelve.

    Forum url: http://www.serpini.es/sqlrpt/forums/

    ovizii
    Participant

    Solved by using User Role Editor to reset all wordpress user roles to their default.

Viewing 25 results - 3,876 through 3,900 (of 6,794 total)
Skip to toolbar