Search Results for 'buddypress'
-
AuthorSearch Results
-
November 24, 2012 at 3:05 am #145562
In reply to: Maintenance Mode for BuddyPress pages?
Ben Hansen
Participantthe “maintenance mode” plugin has always worked for me and definitely blocks all pages (bp included) for all non-admins given the correct settings
November 24, 2012 at 12:32 am #145561esavvides
ParticipantSolved! Wow. Thank goodness someone else was as dumb as I was and did the same thing and someone else was smart enough to figure it out. When I was first learning this, I stupidly transferred a theme into the wrong place and was supposed to delete the files, but it was late and I forgot in the morning. So those files were causing the problem. I had to delete over 300 but luckily I knew which one caused the problem and just had to match up file size with dates and folders and now everything is working. But without that error message above, I never would have found the solution. And I only found that from searching for Apache permalinks on Bluehost. Needle in a haystack!
November 23, 2012 at 8:34 pm #145553In reply to: Best way to enable facebook login?
Ben Hansen
Participantanyone tried the addthis social signin with buddypress yet? does FB Twitter and G+. i use their link sharing plugin and was planning to try out the new signin plugin asap:
November 23, 2012 at 7:58 pm #145551jakewho
ParticipantThanks! That did the trick
November 23, 2012 at 7:43 pm #145550Paul Wong-Gibbs
KeymasterEasiest way is to download and activate this plugin: https://wordpress.org/extend/plugins/buddypress-translations/
November 23, 2012 at 1:27 pm #145544webwarrior.wng
Participantplease have a look on the link, i want to show u my problem, Thanks
November 23, 2012 at 11:42 am #145540In reply to: Best way to enable facebook login?
Roger Coathup
ParticipantAs @sheffieldlad suggests, wp-fb-autoconnect delivers a good off the shelf solution, and provides some integration with BuddyPress profile fields
[ note: wp-fb-autoconnect is a facebook only solution, and everything is installed / controlled on your site; Pro version is a one off payment. Loginradius is a SaaS solution, with monthly payment plans to enable full features, remove labelling, etc. If you want a full SaaS solution, you should also look at Janrain, Gigya and Oneall. ]
November 23, 2012 at 5:21 am #145536modemlooper
ModeratorLook through the BuddyPress code. The core components extend a class BP_Component. You extend this class to create your own components. In folder bp-groups you can see how the groups component is being created and use it as an example.
November 23, 2012 at 3:20 am #145535Erlend
ParticipantThat doesn’t help make a separate group though, it only explains how to extend it. We want to keep our groups as they are, while adding a new component, based on groups, but with its own slug and so forth.
November 23, 2012 at 2:56 am #145534In reply to: How to make Profile fields visible only to admins?
scorbic
ParticipantFurther, just had a quick look at the db, seems visibility levels are saved in the wp_usermeta field bp_xprofile_visibility_levels. Buddypress reads this field and enforces the policy there, so even though you have changed the site wide policy it still enforces the per user settings (if that makes any sense). What you need to do is update each users policies each time the site wide is changed. The plugin was only ever supposed to be an example on how to do it so I don’t think it is robust enough for a live server.
November 23, 2012 at 2:26 am #145532shanebp
ModeratorUse the Groups extension api
https://codex.buddypress.org/developer-docs/group-extension-api/November 22, 2012 at 10:45 pm #145531In reply to: How to make Profile fields visible only to admins?
robotnjik
Participant@modemlooper Well, that’s plugin/solution I used but now is not working. As you can see, last time was updated 8 months ago. Probably is not anymore compatible with latest versions of BP.
November 22, 2012 at 9:11 pm #145525In reply to: has anyone converted BP forums to bbpress?
r-a-y
KeymasterCool, thanks JJJ.
I’ve added an article to the codex:
`https://codex.buddypress.org/buddypress-site-administration/migrating-from-old-forums-to-bbpress-2/`Anyone, feel free to edit!
November 22, 2012 at 8:56 pm #145524drill_sgt.lewis
ParticipantAnother simpler approach would be to created a bp-custom.php and place it in the plugins directory and add the following code
`<?php
function bp_guest_redirect() {
global $bp;
if ( bp_is_activity_component() || bp_is_groups_component() /*|| bbp_is_single_forum()*/ || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) ) {
// enter the slug or component conditional here
if(!is_user_logged_in()) { // not logged in user
wp_redirect( get_option(‘siteurl’) . ‘/register’ );
} // user will be redirect to any link to want
}
}
add_filter(‘get_header’,’bp_guest_redirect’,1);
?>`
This code will work to hide buddypress pages and group forums as is, if your using sitewide forums in line 4 remove the comments around:
|| bbp_is_single_forum()
Save and refresh. Works in current versions.November 22, 2012 at 7:15 pm #145522In reply to: has anyone converted BP forums to bbpress?
John James Jacoby
Keymaster* Backup your database (you may need to restore if migration fails)
* Disable BuddyPress’s Forums component
* Tools > Forums > Import
* Choose bbPress1
* Run the converter
* Visit Tools > Forums
* Run all of the repair tools (most likely one at a time)
* Visit Settings > Forums
* Make sure “Enable Group Forums” is checked
* Make sure the BuddyPress root forum is correct
* DoneNovember 22, 2012 at 5:08 pm #145513In reply to: has anyone converted BP forums to bbpress?
Paul Wong-Gibbs
KeymasterIt should be possible with 1.6. You’ll need to remember to turn off the “Forums” component in BuddyPress (wp-admin > Settings > BuddyPress). I am not totally sure of the steps to do the migration; I’ll ask JJJ if this has been documented.
November 22, 2012 at 4:26 pm #145512In reply to: How to make Profile fields visible only to admins?
modemlooper
ModeratorYou can choose the my friends option to at least block all fields to a users friends. You can also look over @boone code to add your own visibility options. https://github.com/boonebgorges/bbg-custom-bp-field-visibility
November 22, 2012 at 4:03 pm #145510giannisff
ParticipantHi,
I think that this link will help you. Have a look at this http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/November 22, 2012 at 3:13 pm #145509In reply to: Multisite Installations
Brajesh Singh
ParticipantHi Shane
If you ask my personal choice, I will go with subdirectory. But it does not make much difference.Since you are just planning to install buddypress, you just need to follow the first 2 steps and not worry about the other steps in that guide.
I haven’t seen a better guide on thing thing though.
November 22, 2012 at 3:01 pm #145507Haime Croeze
ParticipantSolved: this is the final version I got on superslider (and added a css class “third” where I removed the max width)
`
Registreer
<form action="/registreer” name=”signup_form” id=”signup_form” class=”standard-form” method=”post” enctype=”multipart/form-data”>
<input type="text" name="signup_username" id="signup_username" value="” />
<input type="text" name="signup_email" id="signup_email" value="” />
<label for="”>
<input type="text" name="” id=”” value=”” />
<label for="”>
<textarea rows="5" cols="40" name="” id=””>
<label for="”>
<select name="” id=””>
<label for="”>
<select name="” id=”” multiple=”multiple”>
<a class="clear-value" href="javascript:clear( '’ );”>
<label for="_day”><select name="_day” id=”_day”>
<select name="_month” id=”_month”>
<select name="_year” id=”_year”>
<p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-“>
<?php printf( __( 'This field can be seen by: %s‘, ‘buddypress’ ), bp_get_the_profile_field_visibility_level_label() ) ?> Change<div class="field-visibility-settings" id="field-visibility-settings-“>
<p class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-“>
<?php printf( __( 'This field can be seen by: %s‘, ‘buddypress’ ), bp_get_the_profile_field_visibility_level_label() ) ?><input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="” />
<input type="submit" name="signup_submit" id="signup_submit" value="” />`
November 22, 2012 at 2:48 pm #145506Brajesh Singh
ParticipantIf the xprofile fields(custom profile fields) are not appearing, you may want to modify this in your code
``
to
``
That should make them appear.
November 22, 2012 at 2:42 pm #145505In reply to: Multisite Installations
Brajesh Singh
ParticipantHi Shane,
You can install buddypress on secondary blog and use it as private network.Here are some details on configuring BuddyPress on secondary network
https://codex.buddypress.org/users/getting-started/install-buddypress-on-a-secondary-blog/and you can use any of the wordpress privacy plugin to make this network private.
Hope that helps.November 22, 2012 at 1:14 pm #145502Haime Croeze
Participantquestion remains: why doesn’t the registration form show
November 22, 2012 at 11:28 am #145499In reply to: [Resolved] Export users and xprofile data
Paul Wong-Gibbs
KeymasterNot aware of any tools to export BuddyPress data out of WordPress yet, unfortunately, other than a SQL export from the database.
November 22, 2012 at 10:23 am #145498Haime Croeze
ParticipantHi @themightymo
that does work. I removed everything between the form tags and added “DOES THIS TEXT SHOW UP” and it does
see http://www.croeze.net -
AuthorSearch Results