Search Results for '\"wordpress\"'
-
Search Results
-
Topic: Forum Access Question
Hi,
I have created an open private forum. When a person registers and logs in, they are directed to the front page of my site. When they access the dashboard and try to click on the forum topics they get a message that says “You do not have sufficient permissions to access this page.” My question is:
1. When they log in, is there a way that they could get directed straight to the forum instead of being directed to my site’s front page.
2. When they go to the Dashboard, how can I give them access to the topics so they don’t get the message: “You do not have sufficient permissions to access this page.”WEBSITE: http://www.successintention.com/
bbPress Version: 2.4.1
WordPress 3.7.1.
Genesis Version: 1.9.2
bbPress Genesis Extend Version 1.0.1Thanks,
-SuzannaI have seen this question asked often but I cannot see an answer. I set up bbpress yesterday, all looks OK so far. When a new user registers an email is sent to their address. The information isn’t very helpful or friendly or even clear who it’s from and the link provided is http://lancaster.thefamilynoticeboard.co.uk/wp-login.php
I don’t want users sent to the WP login screen. I want them to be directed to my forum page where there is a login widget.
Secondly can the register widget be adapted to ask for first and last name as well as username or any other information I may want to record?
My WordPress version is 3.6 and bbpress is 2.4.1
Thank you!
Hello,
I am trying to add an image to a post. I am logged in as an administrator but when trying to submit the post with an img tag it returns an error: Forbidden You do not have permission to access this document
I am using bbpress Version 2.4.1 and WordPress 3.6.1.
Thanks!
Hello, I will apologize in advance if this has been covered but I see bits and pieces around these topics but the solutions are outdated or I just dont get the whole solution.
I would like to modify two things about the bbPress forum registration process:
1) I would like the user to go to a page of my choosing on successful registration, not WordPress backend login.
2) I would like the registration email to contain a link of my choosing (same as 1) instead of to the WordPress backend login.I have seen many posts on this forum suggesting to edit certain php pages which I am comfortable with, but the details must be for old versions of bbPress b/c I cannot find the PHP pages in question. I have downloaded most of my website through FTP and tried to text search for the specific functions and cant find them either. I know I am missing something. Other things I have seen mentioned are including filters. I am really unsure of how filters are integrated into the solution (I am very new to WordPress). I think I am close to a solution, or if someone has a really nice plugin I would love that.
Here are my environment specs:
bbPress 2.4
WordPress 3.6Thank you in advance.
Hey @fskrdla, can you please help me? I’m having the exact same issue, I’m in no way a programmer but I get around. I tried installing both Bbpress (2.4) and Buddypress (1.8) on WordPress (3.7) and I can’t for the life of me to get them to work. I updated the settings on my server to PHP 5.3, but I can’t seem to activate both BB and Buddy at the same time, I get a memory allocation error.
Do you have any tips on how to solve this? Thanks so much either way!
I am currently using BBPress and will integrate it with MediaWiki.
However, the problem is as my forum’s index is set to display as a shortcode on a page called ‘Forums’, which is set as my site’s homepage the breadcrumbs display as follows:
Forums >> Forums >> Digital Terrestrial
See: http://www.channelwiki.org/forums/?forum=digital-terrestrial
As you can see the second ‘forums’ link takes a user to the default BBPress Forum index (not my sites homepage). How can this second ‘Forums’ link be removed?
The second issue is, as users are signing in via MediaWiki and will then be signed in to WordPress when they access the site automatically, how can I disable sign in via WordPress and registration, but still allow access to private messages and sign in via the wiki? The WP-Admin bar will also be hidden
Another issue is that I do not know how to redirect users back to the wiki. I’ve though about placing a ‘Log in’ link in the site’s main navigation, which links to the wiki’s login page but I’m not sure how to redirect them back.
Many thanks in advance,
channelwikiI don’t have any place on the left side bar to edit BBpress and when I go into the settings of the plugin I see this message:
You do not have sufficient permissions to access this page.
I have 3.7.1 of wordpress installed
I just uploaded the most recent version of bbpress
My site is http://www.bodyredesignonline.com
Topic: bbp_add_caps function ?
Hello there, I just went through some problems where the bbPress capabilities were not registered in the wp_user_roles option_name row entry. I don’t know what caused it but I was trying to see if I uninstalled/reinstalled bbPress it might reset the capabilities. It didn’t.
So I got hunting through the code and I found this function:
/** * Adds capabilities to WordPress user roles. * * @since bbPress (r2608) */ function bbp_add_caps() { // Loop through available roles and add caps foreach ( bbp_get_wp_roles()->role_objects as $role ) { foreach ( bbp_get_caps_for_role( $role->name ) as $cap => $value ) { $role->add_cap( $cap, $value ); } } do_action( 'bbp_add_caps' ); }But nothing seem to ever call this function. I did a search through all of the plugin code and there aren’t any references to this function. What gives?
In the end I was able to force the capabilities to be rebuilt by adding this function call inside another function that I knew was being called and it worked (I’ve since removed this).
BTW, this is on WP 3.7.1, bbPress 2.4.1.
Thanks!
Patrick