Search Results for 'buddypress'
-
AuthorSearch Results
-
May 8, 2013 at 6:28 am #163576
facs01
ParticipantI Just wanted to post this solution, as I spent a lot of time trying to find what was not working, because the /register/ page wasn’t loading after installing buddypress. In fact the problem was solved after enabling the mod_rewrite in Apache but in devian linux you have to follow this procedure to enable it also modifying the files suggested by this url:
http://www.esscotti.com/resources/articles/41-general/103-how-to-enable-modrewrite-in-apache-2-on-debian-linuxHope this helps more!
May 8, 2013 at 5:27 am #163574bp-help
Participant@krisdarty
Didn’t you read the requirements? It states clearly it is compatible up to: WP 3.3.1, BuddyPress 1.5.3.1. So until @djpaul has plans or time to update the plugin then I suppose you should not use it if its not working for you. Otherwise if you have time deadlines and you know how to code then the source is there for you to tweak. Otherwise you may need to hire a developer if you can’t figure it out on your own. I am in big favor of using some code that disallows installing plugins on setups until the specific WP and BP versions fit what it has been tested to work with so it just will not install unless it meets all requirements. If anyone knows a way to handle this then I would like to be educated myself so I can employ it in plugins. I haven’t seen anything in the codex so any advice is good.May 8, 2013 at 2:09 am #163571In reply to: Can I make Members Directory Private?
bp-help
Participant@mshane8
This small plugin makes all buddypress related pages private and redirects logged out visitors to the register page. Read the readme.txt and study the comments in the plugins private-community-for-bp.php if the default functionality does not meet your requirement then you can edit it to do so. Get it here:
https://github.com/bphelp/private_community_for_bpMay 7, 2013 at 10:44 pm #163562In reply to: [Resolved] Where is the BP Group Documents Plugin?
lenasterg
ParticipantHi, BP group documents plugin now compatible with BP1.7 in beta version can be found on http://lenasterg.wordpress.com/2013/04/30/buddypress-group-documents-for-bp-1-7-and-wp-3-5-1/
May 7, 2013 at 10:44 pm #163561In reply to: Custom User Role Doesn't Have Sufficient Privileges
danzigism
ParticipantYou’re right @shanebp
After reading that manage_options much gives that role access to the entire Settings feature of WordPress I realized that isn’t good. Needless to say, I have used Adminimize to hide the “Settings” tab from the Manager user role for the time being but certain savvy people could still access it if they knew the URL to those settings pages.
I submitted the bug to: https://buddypress.trac.wordpress.org/ticket/4991#ticket
Thanks again for all of your help!
May 7, 2013 at 8:21 pm #163558In reply to: Can buddypress do the following?
shanebp
ModeratorSo you know how to code a plugin that creates and handles cpts ?
Then something like this in the plugin class:
add_action( 'bp_setup_nav', array( $this, 'bp_stories_tab' ), 5 ); // create the tab function bp_stories_tab() { bp_core_new_nav_item( array( 'name' => __( 'Stories', 'bp-member-stories' ), 'slug' => 'stories', 'position' => 200, 'screen_function' => array( $this, 'bp_stories_screen' ), 'default_subnav_slug' => 'stories' ) ); } // load template when tab is clicked function bp_stories_screen() { add_action( 'bp_template_content', array( $this, 'bp_stories_profile_screen' ) ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) ); } // show the stories screen function bp_stories_profile_screen() { // etc. }May 7, 2013 at 7:40 pm #163556In reply to: Can buddypress do the following?
roybarberuk
ParticipantThanks @shanebp Im very familiar with wordpress, so the read sections will be fine, i cant seem to see where to get started with creating the page in their profiles, do you have any links / resources or can you point me in the right direction.
Regards Roy
May 7, 2013 at 7:37 pm #163555In reply to: Can buddypress do the following?
shanebp
ModeratorBP can’t do that out of the box.
You can extend it using custom post types.
No need to send them to wp-admin, they could create stories via a page within their profile.
Read and sort can be handled via the usual WP post functions, within or outside profiles.May 7, 2013 at 6:27 pm #163552In reply to: Terms of use plugin for Buddy Press
bp-help
ParticipantSee my response here:
https://buddypress.org/support/topic/terms-of-agreement-checkbox-for-registration/
You will need to write a page of your Terms Of Service and you can add a link in the profile field description that would link to that page. After you create the page just copy the permalink under the Title and then paste it into the field description. For example:<a href="http://your-site/terms-of-service/">By checking the Terms Of Service Box you have read and agree to all the Policies set forth in this sites Terms Of Service</a>Of course this is just an example. As far as making buddypress only visible after they register you can use the technique above in combination with this plugin:
https://github.com/bphelp/private_community_for_bp
Make you to read the readme.txt in this plugins folder as it has some info regarding forums.
Cheers!May 7, 2013 at 6:17 pm #163551In reply to: Custom User Role Doesn't Have Sufficient Privileges
shanebp
ModeratorGlad you got it sorted.
But ‘manage_options’ is a powerful cap.
I could see where you wouldn’t want to grant that cap to a custom role.Now that you can explain the issue, I suggest you submit a bug.
https://buddypress.trac.wordpress.org/May 7, 2013 at 4:37 pm #163542In reply to: [Resolved] BuddyPress 1.7 Theming
Hugo Ashmore
ParticipantWell sorry ‘Dude’ I wrote it took me a half day almost so think 1 minute spent looking for it and posting the link wasn’t too much to ask or expect 😉
May 7, 2013 at 4:04 pm #163539Baskers
ParticipantSoftware details are:
– WordPress Theme Custom Community By ThemekraftVersion 1.15
– BuddyPress Version 2.3.2.
– WordPress Version 3.5.1Again, I’ve tried it with just the default buddy press theme, and disabled all plugins and still can’t create new user accounts via the registration page.
Please help
May 7, 2013 at 2:49 pm #163536In reply to: [Resolved] BuddyPress 1.7 Theming
bhulsman
ParticipantThanks dude! Realy helpful notice ^^
Documentation can be found here: https://codex.buddypress.org/developer/theme-development/a-quick-look-at-1-7-theme-compatibility/
May 7, 2013 at 2:45 pm #163535In reply to: Custom User Role Doesn't Have Sufficient Privileges
shanebp
ModeratorTry giving them the ‘bp_moderate’ capabilities.
It seems edit_profile checks to see if it’s your profile or whether
bp_current_user_can( 'bp_moderate' ) || current_user_can( 'edit_users' )
so adding the ‘edit_users’ cap should work.See bp_core_can_edit_settings() in bp-members-functions.php
It may not be a bug, but you could find out by submitting a bug
https://buddypress.trac.wordpress.org/May 7, 2013 at 2:41 pm #163534Baskers
ParticipantHello? Anyone?
May 7, 2013 at 2:01 pm #163532In reply to: Custom User Role Doesn't Have Sufficient Privileges
danzigism
ParticipantI have checked the user “capabilities” of the custom role I have created and it has all the capabilities it needs to modify WP users. They can reset passwords and modify WP related profile information but NOT BuddyPress extended profiles. Apparently though BP doesn’t use WP roles for anything besides checking for super admin privileges. Can anybody think of a way to modify BP to allow non-super admins to edit extended profile information of other users besides themselves?
May 7, 2013 at 12:24 pm #163531Jack Daniel 2020
Participant@karmatosed: thank you
May 7, 2013 at 11:37 am #163530In reply to: Custom Login Page in BuddyPress
Paulo Vieira
ParticipantI know this has been a while but for some reason $bp->current_component was coming back empty . I saw some people asking around and if you change
if ( $bp->current_component != BP_LOGIN_SLUG)for
if ($bp->unfiltered_uri[0] != BP_LOGIN_SLUG)in Brajesh Singh it should work. just remember to place bp-custom.php in the right folder and to create the login.php file inside of registration (within your active theme)
May 7, 2013 at 10:24 am #163528Chris
ParticipantHi,
I have resolved the problem on the site where I was having problems.
Here’s what I did.
1. Disabled “all plugins”
2. By doing this I identified it wasn’t a BuddyPress Problem
3. Tried to login on as a vanilla WordPress site. If you cant login you are confirming this is not a BuddyPress issue but a WordPress issue.
4. Ran the script written by Mark Jaquith found here: http://markjaquith.wordpress.com/2006/03/28/wordpress-error-you-do-not-have-sufficient-permissions-to-access-this-page/
5. I checked the user on the Vanilla WordPress site, I logged in OK.
6. I re-initialised all BuddyPress Plugins and Themes
7. I was able to log in. (Yeah Team!)All good. I hope this helps.
May 7, 2013 at 9:29 am #163524In reply to: Profile Layout
Tammie Lister
ModeratorIf you only want urls you can use profile fields then pull each through to show where you want on the profile.
Once you’ve set up the profile fields in your admin dashboard you can then output like this:
<?php bp_profile_field_data( array('user_id'=>$user_id,'field'=>'twitter' )); ?>This assumes a profile field called Twitter. You may have to set the $user_id depending on if you are outputting on profile or somewhere else.
Should you want to use different types of fields such as date pickers and so on you can use: https://wordpress.org/extend/plugins/buddypress-xprofile-custom-fields-type/
May 7, 2013 at 8:37 am #163523In reply to: Missing Profile Fields
ebraxton30
Participantok, i have asked several questions on this support forum and this is the first time i was directed to this site. here you go…
1. i am up to date on wordpress, 3.5.1
2. WordPress was installed as a directory, not a subdomain
3. Root
4. WordPress was installed at 3.5.1, not upgraded
5. yes
6. 1.7.1
7. I did not upgrade Buddypress, I installed this version
8. Bowe Codes, ADJE Event Cal, Buddypress Xprofile Custom Fields, Gravity Forms, Gravity Forms user Registration Add-on, Members, Uber Login Logo, WordPress Font Uploader, WordPress Uploader
9. I am using the Salutation theme
10. No
11. no
12. n/a
13. none
14. bluehost
15. LinuxAgain…the test profiles are working. Just not the ones filled in.
i am using buddypress 1.7
it was a direct install, not an upgradeMay 7, 2013 at 6:43 am #163519In reply to: Why not blogs?
@mercime
Participant@bounomid you probably mean blog posts, not blogs as that requirest a multisite setup like hnla mentioned above. Check out http://buddydev.com/buddypress/introducing-buddyblog-allow-users-to-blog-from-their-buddypress-profile/
May 7, 2013 at 6:38 am #163518In reply to: Missing Profile Fields
May 7, 2013 at 6:34 am #163517In reply to: Duplicate entries in profile
@mercime
Participant@paisano What theme are you using? If it’s a “BuddyPress-ready” theme, check if it’s been updated for BP 1.7. Change to BP Default theme and check if same issue is showing up
May 7, 2013 at 5:19 am #163515In reply to: [Resolved] can't activate bbPress 2.3
Vernon Fowler
ParticipantI believe some other plugins were conflicting. Activating bbPress with only the BuddyPress 1.6.5 plugin active works fine. I will go through the 1.7 update before trying some of my other plugins to determine which were producing the conflict. Thanks heaps to Andrew Macdermid for working with me today to narrow down the problem area. I will post again with the conflicting plugins once I’ve finished.
-
AuthorSearch Results