Search Results for '+.+default+.+'
-
Search Results
-
Topic: BBpress Post Editor
Hey all,
How would one go about extending the default BBpress post editor ? I would like my users to be able to add images and links.. the current editor seems very basic (I am using the latest version of BBpress)..
Even the editor used here on bbpress.org is much better than the default one.
Thanks in advanced for any assistance on this matter.
Regards, Darren
Eg: no captha, no wordpress plugin include! I think it work in different mode or with different class… Is there any way to change this? đ
If bbPress is running on a WordPress Multisite subdomain, then it seems to be adding network users who visit a sub site to the sub site’s users as participants – this includes the super-admin!
Activate bbPress plugin on a subdomain and ths default setting is unchecked:
`
Auto role | Automatically assign default role to new, registered users upon visiting the site.
`Visit the sub site as any network user, and they are added as a participant! Only after checking the Auto role option, saving and unchecking it and saving again, does this work as intended.
The second bug is a major one and can only be stopped by deactivating bbPress!
I am writing a plugin which creates users and adds them to blogs. I am using the add_user_to_blog* function and each time I call it with bbPress activated, it adds the admin user who is calling the function to ALL blogs as a participant! If I go into a subdomain as a admin user of that site, this admin user is not listed (even in subdomain who have bbPress enabled), but I as this admin can see all sites are listed in my Sites drop down. I manually look into the database and see in the wp_usermeta table that this user has capabilities and level (of 0) entries for all blogs!
Of course if I deactivate bbPress and call up the add_user_to_blog, everything works as expected, and the user calling up the function does not get added as a participant to ALL the sub sites! I think there is some sort of filter that bbPress is applying that is causing this.
Could someone look at this and see if they can replicate it and fix it?
http://www.claverton-energy.com â running WordPress since 2008. In Dec 2012 I was asked to rebuild it, enhance its features, including installation of bbPress / BuddyPress etc.
PROBLEM: an item I have not been able to solve is that users with Admin access can log in, but cannot access the default Admin page. However, they are able to use the Edit option when viewing a page whilst logged in.
Iâve read through numerous forum posts on WordPress.org and other sites, and tried solutions others have found, but have not solved the problem. Some âsolutionsâ have created additional setbacks! Trying to force a database upgrade resulted in all userâs passwords ceasing to work, requiring manual resets via MySQL⌠đ
Over the past month;
– the site has been successively upgraded to 3.5.0 and then to 3.5.1
– wp-admin / wp-includes directories have been replaced with fresh copies to eliminate possibility of a corrupt file
– wp-config has been replaced with latest version
– Database ârepairâ run from Cpanel
– checked for âcurlyâ quotes in user meta-data
– site used standard wp_ table prefixes
– disk space is not an issue
– max memory use test shows +80mb which seems ok
– directory / file permissions are 755 / 644 respectively throughoutAnd yet, the problem persistsâŚ
An additional / presumably related issue: whilst the Super Admin can access all WP Admin areas, including plugin sub-pages. However, the BackupBuddy plugin does NOT show the menu subpages, and entering the URL for those gives that same âyou donât have permissions to access that pageâ error! Deactivating & deleting it and adding it back via FTP does not resolve that problem.
NB: The underlying problem pre-dates the rebuild, the site now runs:
– BuddyPress / and the Buddy theme,
– Quick Cache
– Stop Spammer Registrations & Confirm User Registration plugin
– User Spam Remover
– Wordfence security
– BuddyPress backupAny suggestions on how to solve our âpermissionsâ issues would be greatly appreciated.
Regards
BenHello,
As per bbpress doc I found by default it uses page.php in wordpress theme to render all its contents. But since I have to use different template with a different sidebar and widgets I created forum.php copied from page.php in my wp-theme and luckily it worked. Dont know why its not mentioned in bbpress docs. Also, forums.php working fine, so I am in more doubt which file naming conventions is correct. Is it something missed to mention in bbpress docs? Please let me know.Further, for the bbpress user pages, like profile, edit profile, topic started etc. I need to use a custom template file in my theme. In bbpress templates as per documentation, I have checked all user templates inside are just contains the content part only not including header, footer, sidebar etc. And by default it also renders by page.php.
How can I make a custom user template file other than page.php or forum.php which control all user related contents, so that I can have different template for forum or other pages?
Suggestion:
BBpress should have capability to use different template files for different kind of pages, or their should be settings in bbpress admin to select which template to use for what kind of pages.
This is somewhat, wp-members, woocommerce and other plugins do for better integration in wordpress. These plugins have the ability to create different pages in admin editor having selected particular template to render and putting inside their shortcodes to render various types of contents. And also have the settings in their admin to set different pages/template for different stuff.Please let me know if this possible with bbpress 2.2.4 with wp 3.5.1 currently.
If not possible please let me know how I can achieve the effect, with some sample custom code hints. Currently I dont need help to create bbpress admin side settings dropdown etc., becoz these are the thing I mentioned as suggestions to make bbpress better theme compatible.
Right now, just need help how to use different template for user pages than other forum pages.—
Thanks
ShashankWP: 3.5.1, bbPress: 2.2.4
From the documentation I can tell that the ‘Auto Role’ applies the default user role to new user accounts. However since ‘Auto Role’ is not turned on by default I’m curious what the default behavior is? Or more importantly, why isn’t ‘Auto Role’ enabled by default?
Thanks,
-jTopic: Sub Forum permalink problem
This is with bbpress 2.2.4. If I switch to default settings under permalinks, all is well. I want to use Day and Name option, but when I do this I notice that attempting to go to a sub forum under a category would return a file not found error.
So I looked at the URL’s and I am getting:
http://mysite.com/site-forums/site-forum/support/bug-reports/
However when I delete the /support from the URL string and use this:
http://mysite.com/site-forums/site-forum/bug-reports/
Everything works and the correct forum is displayed. Is there somewhere I can edit that will take the forum parent topic out of the sub-forum’s URL?
The title says it. I have mutliple sites, and I need users that are registered to a site to be able to participate in the private forums of just that site. The problem seems to be bbPress’s totally confused capability model.
By default private sites are hidden to users. There is a weird “Auto Role” option that can adds bbp_participant to all users. But that means that users get access to all forums on all sites.
So turn that off. Try to add bbp_participant role explicitly using action ‘add_user_to_blog’
$user->add_role(“bbp_participant”);
However, that failed to add the user. WordPress really only supports one role per user, certainly set_role only accepts a single role and purges any others. So I think something is resetting it.Then I try simply
get_role( ‘author’ )->add_cap( ‘read_private_topics’ ); // for bbpress.
That successfully updates the database, but has no effect on bbpress. I suspect because one of the three(!) capability.php files in bbpress has
case bbp_get_spectator_role() … ‘read_hidden_forums’ => false,
rather than just leaving it out. So capabilities do not merge properly between roles.There is something called Dynamic roles whatever they might be.
Maybe I need to abandon capabilities altogether and hook somewhere else? Maybe one of the numerous plugins works multisite?
Regards,
Anthony
Topic: bbpress 2.3beta1
Not sure if this is a bbpress or buddypress issue (BTW can’t post on buddypress support forums, when I log in to bbpress.org, but that’s a separate issue, I also see the admin menu on buddypress.org)…
Ok, so I’ve been playing around with both bbpress and buddypress for the last 2 weeks. I have checked out of svn both of the latest trunk versions. I’ve gotten pretty adept at setting everything up from scratch during my testing. When creating a group, let’s say “group1” in buddypress, I allow bbpress to create the corresponding forum during group setup. Now, when I go into the bbpress admin backend and create a forum from there, let’s say “subforum1” and make “group1” the parent, it works. Yeah! Just what I wanted, parent groups and sub-forums, however, it doesn’t work the way I expect it to. I can see the subforum in the group now from the front end, and post something in the subforum, but not in the main forum/group “group1”, and every time I click on the group, and then the forum tab, it shows the sub forum(s) and topic posts (only from the last post to the last subforum), and then a create topic form on the bottom, defaulting to the last subforum I created. Meaning I can never post anything in the parent forum “group1” or any other subforums that might have been created under group1. No dropdown to select a different forum to post it to. This is not how would expect it to work. I would expect that you default to the main parent forum (group1) for posting and reading of topics, and the subforums (which do show on the group1 forum page) you can click on and then post within them. It seems this functionality is almost there, and I want to make sure this is either something that is getting fixed, or a mistaken capability that I stumbled upon and it not meant to operate that way.
Thanks for all of you hard work on these 2 projects, you guys are awesome! I can help contribute to the dev as a tester if you want.
FirmaSite Social
How to download:
http://wordpress.org/extend/themes/firmasite
Theme Features:
Themes are in review for publishing on WordPress.Org Theme  Directory but in meantime, you can download and try it from links above. Please share your opinions on theme in this topic.