Search Results for 'buddypress'
-
AuthorSearch Results
-
January 18, 2013 at 2:14 am #151002
In reply to: Create private membership site with BuddyPress
gdavis0007
ParticipantCheck out the plugin wp-members. I have been using it on a family site and it does exactly what you are looking to do. I only just tried it on BuddyPress (CBOX) tonight. It seemed to work ok.
January 18, 2013 at 2:09 am #151001In reply to: Create private membership site with BuddyPress
modemlooper
ModeratorJanuary 18, 2013 at 1:48 am #151000In reply to: Create private membership site with BuddyPress
bglclub
ParticipantThe problem with this scenario is the Buddypress sends asks the user for a password, then the user approval generates another. I have been beating my head trying to solve this same problem. I need users to resister without a password, then when they are approved, they get sent a generated password.
January 18, 2013 at 1:21 am #150998modemlooper
Moderatoruse bp-custom for buddypress code. You preserve you edits if you decide to change or update a theme.
January 18, 2013 at 12:36 am #150994danbpfr
ParticipantWorking on Salutation is a mess… and a bit complicated to use.
I suggest you to test your blog with the twenty eleven theme to see if your posts are coming correctly.
After that you have to test with the default layout of salutation.
Normally, BP has nothing to do with posts. It’s WP stuff only.
If posts are not visible it’s probably due to the theme, which is buggy.
Put wpdebug on true in wp-config (sit at the end of the file) to understand what i mean. šJanuary 18, 2013 at 12:15 am #150993faeronsayn
ParticipantI am on single. I am using Salutations for when it is activated and when it is deactivated.
January 18, 2013 at 12:03 am #150992danbpfr
ParticipantJanuary 18, 2013 at 12:00 am #150991danbpfr
ParticipantGo to your admin > Pages and delete the register and empty the trash
Do the same if you have a Login page.
Then go to settings > buddypress.
– Tab Component and check the one you want.
– Tab Pages and create a page from there for each component.
Save.
Now BP is correctly configured.
Check also settings > permalinks and choose something other as default.
If you created some custom menus before installing BP, double check them to have the new pages.
Done !
January 17, 2013 at 11:47 pm #150988In reply to: Big Akismet Problems
rossagrant
ParticipantCool, no worries Paul!
I guess Clayton’s 25,000 entries would have been cleared if the cron job was running on his install though?
Rather than me mucking p this thread though, we can discuss it here:
https://buddypress.org/support/topic/bp_activity_akismet_delete_old_metadata-what-does-this-do/Any ideas on how to re initiate that cron job wold be very much welcomed!
Cheers mate š
January 17, 2013 at 11:47 pm #150987danbpfr
Participanthi,
or you can also add this piece of code to plugins/bp-custom.php
`function remove_public_message_button() {
remove_filter( ‘bp_member_header_actions’,’bp_send_public_message_button’, 20);`}
add_action( ‘bp_member_header_actions’, ‘remove_public_message_button’ );https://codex.buddypress.org/developer/customizing/bp-custom-php/
January 17, 2013 at 11:07 pm #150982In reply to: BuddyDroid ā BuddyPress for Android
ddebrich
Participantokay…i deactivate some plugins and i found out, that i cant view the stream because of the “Private BuddyPress” plugin
but i cant deactivate it, because i need it.
is there any solution?
January 17, 2013 at 11:01 pm #150981Andres Felipe
ParticipantHi @kat_indo, I don’t know so much about programming but a little about plugins, maybe this one could works for You https://wordpress.org/extend/plugins/if-menu/.
January 17, 2013 at 10:40 pm #150979In reply to: BuddyDroid ā BuddyPress for Android
ddebrich
Participantokay…
next problem:D
i can update my status via the buddydroid app –> perfect!:)
BUT
i cant view the stream… it says, the stream isn’t aviable yet.maybe it is because i have a plugi installed which let you only view the website if you have an user account..
the plugin names “member access”
can you help me please?:)
January 17, 2013 at 10:33 pm #150978In reply to: BuddyDroid ā BuddyPress for Android
ddebrich
Participantokay…
i rename the bpxmlrpc folder and now it works perfect:)
thank you very much:))
January 17, 2013 at 10:26 pm #150976In reply to: BuddyDroid ā BuddyPress for Android
Yuttadhammo
ParticipantNo, it definitely needs the wordpress added on the end… Without a logcat there’s not much I can say. Can you try accessing the plugin page http://www.site.de/wordpress/wp-content/plugins/bpxmlrpc/bp-xmlrpc.php with a browser?
Oh, I think I forgot to mention that the plugin needs to be in the directory named bpxmlrpc as per the above URL… Oops.
January 17, 2013 at 10:26 pm #150975In reply to: Re-order profile menu items
January 17, 2013 at 9:22 pm #150964In reply to: Change "Freshness" to "Last Posted"
aces
ParticipantJanuary 17, 2013 at 7:37 pm #150955In reply to: Big Akismet Problems
aaclayton
MemberThanks for looking into this so quickly @djpaul. Appreciate your hard work š
Would you presume I can safely delete the 25,000+ akismet activity meta entries which are in my bp_activity_meta table without it causing any adverse effects?
January 17, 2013 at 7:18 pm #150954In reply to: Adding group blog posts to the activity stream?
Ben Hansen
Participantnot me but i would assume it would best to do it that way since that’s the way buddypress itself is activated i would have to assume any buddypress plugin would be designed to work properly with networks at one point buddypress was WMPU only if i’m not mistaken.
January 17, 2013 at 6:56 pm #150951Andres Felipe
ParticipantHi, any idea of this same with a Templatic theme? (sorry if I’m not posting where it should be)
January 17, 2013 at 6:42 pm #150949In reply to: Big Akismet Problems
modemlooper
ModeratorWhat version are you running?
January 17, 2013 at 6:10 pm #150947In reply to: Re-order profile menu items
danbpfr
Participanthi @diondeville,
to change the profile menu (on the top right of the ToolBar)
<code>
function my_change_profile_tab_order() {
global $bp;$bp->bp_nav[‘settings’][‘position’] = 10;
$bp->bp_nav[‘activity’][‘position’] = 20;
$bp->bp_nav[‘friends’][‘position’] = 30;
$bp->bp_nav[‘groups’][‘position’] = 40;
$bp->bp_nav[‘blogs’][‘position’] = 50;
$bp->bp_nav[‘messages’][‘position’] = 60;
$bp->bp_nav[‘profile’][‘position’] = 70;
}
add_action( ‘bp_setup_nav’, ‘my_change_profile_tab_order’, 999 );</code>Take care with quotes when copy/pasting from here ! š
January 17, 2013 at 5:26 pm #150944In reply to: BuddyDroid ā BuddyPress for Android
ddebrich
Participantokay
my site url was
i change it into the right shema http://www.site.de/
but now it says:
org.xmlpull.v1.XmlPullParserException:
unexpected type(position:
END_DOCUMENT null @1:1 in java.io.
InputStreamReader@4235a618)
January 17, 2013 at 4:56 pm #150940In reply to: Standard profile fields not showing in BP profiles
danbpfr
ParticipantThe WP standard fields are not used, this is default usage with BP activated.
But you can create your own custom fields on the profile.
More about this here: https://buddypress.trac.wordpress.org/ticket/3335January 17, 2013 at 4:48 pm #150939In reply to: Remove 'Edit My Profile'
danbpfr
Participantoops, sorry, was code for the old buddybar. It’sĀ now called Toolbar and implemented by default on BP, but i don’t use it.
Also, be a bit more explicit next time you ask for something. They’re many menus in BP. šUse this in functions.php (tested: works on WP 3.5/BP 1.6.3 MS)
function admin_bar_remove_this(){ global $wp_admin_bar; $wp_admin_bar->remove_node('my-account-forums-favorites'); } add_action('wp_before_admin_bar_render','admin_bar_remove_this');The node id’s are all in the footer html of each page where the toolbar appears. This means you have to view the page source code to get the node id you want to remove.
Menu items are in li tags and each li as a ID which begins with “wp-admin-bar-” followed by “-node-name”
Other tips here: http://jeffersonsnewspaper.org/2012/tips-for-using-the-wordpress-admin-bar-with-buddypress/Legacy reference here:
https://codex.wordpress.org/Function_Reference/remove_node
https://codex.buddypress.org/developer/theme-development/modifying-the-buddypress-admin-bar/ -
AuthorSearch Results