Search Results for 'wordpress'
-
AuthorSearch Results
-
November 2, 2012 at 12:21 am #144402
modemlooper
ModeratorPeople will chime in but anything recommended by WordPress should be good. Just remember BuddyPress has more overhead in displaying content and will use more resources.
November 1, 2012 at 10:54 pm #144399In reply to: Spam registrations
MickeyRoush
Participant@ A Swede in Greece
You could try this plugin:
https://wordpress.org/extend/plugins/stop-spammer-registrations-plugin/
But you’ll want the beta version as it fixes an issue with BuddyPress
http://www.blogseye.com/beta-test-plugins/Also, you should look into installing ZBBlock.
http://www.spambotsecurity.com/zbblock.phpNovember 1, 2012 at 7:04 pm #144389In reply to: Multisite option not working with Buddypress?
@mercime
Participant== I successfully set up Multisite with my Buddypress site and everything looked like it was working well until any members tried to create a new site. ==
Deactivate BuddyPress and make sure that you can create subdomain/subdirectory sites without any issues. If there is, please resolve multisite issue first before activating BP again – https://wordpress.org/support/forum/multisite
If you can create subsites in your WP install, then activate BuddyPress plugin only, go through the BP Installation Wizard — make sure you choose pretty permalink and choose for BP-default theme. Then create a blog/subsite and check if subsite is working.
November 1, 2012 at 6:34 pm #144386In reply to: 1.7 theme defined
@mercime
Participant@famous BP 1.7 is not due anytime soon. There’s just still so much more to be done and everything should be settled and tested before any documentation is finalized/released. So if you’re going to launch this month or early next month, recommend either create bp-default child theme OR use WP theme with BP Template Pack plugin OR use BP-ready WordPress theme.
The most basic rendition of BP components will just be like how the bbPress plugin forums are rendered with very minimal effort on your part and you can add customizations via shortcodes, style.css or functions.php files. That’s all there is to it. The trac ticket seeks to provide options for developers to customize the structure of each BP component page further, among other things.
November 1, 2012 at 11:35 am #144370parakeet
ParticipantHas this changed at all since you last posted?
I had the same question and got here.
I am new to BuddyPress. It seems ridiculous that a site admin couldn’t alter profile details of a user on his site.
In my case, I want to pre-populate a site with an set of guaranteed users whose info I want to enter for them.
Surely, if BuddyPress was just a part of WordPress alongside it, all BuddyPress user profile info should be accessible and editable under WordPress user profile admin, not just the core WordPress fields?November 1, 2012 at 7:06 am #144361In reply to: buddypress 1.6.1 and Akismet
Paul Wong-Gibbs
KeymasterYou definitely need an Akismet API key; for most people, these are free, so there shouldn’t be any problems. Your WordPress install probably already has the Akismet plugin installed, but you can install it from the Plugins Directory if it’s missing.
November 1, 2012 at 4:33 am #144359In reply to: Re-naming and re-ordering tabs.
modemlooper
Moderatoryou can use this plugin as well https://wordpress.org/extend/plugins/buddypress-extended-settings/
November 1, 2012 at 3:47 am #144358In reply to: activation email change content
@mercime
ParticipantNot exactly, but check this out https://wordpress.org/extend/plugins/welcome-pack/
November 1, 2012 at 3:44 am #144357In reply to: Oh bother! No forums were found here!
@mercime
ParticipantYou can change text strings like “Oh bother! No forums were found here!” in core by adding filters in your theme’s functions.php file
– http://blog.ftwr.co.uk/archives/2010/01/02/mangling-strings-for-fun-and-profit/
or this one which is the same but implemented differently
– http://www.viper007bond.com/2011/07/13/changing-core-wordpress-strings/October 31, 2012 at 11:00 pm #144348rickkumar
ParticipantHi again,
I am almost ready to go ahead with the buddypress multi-network project as mentioned above.
I need some recommendations for:
* selecting a host
* what themes are great (paid or free etc) for the buddypress multi-network projectAlso some tips on starting such as:
* install wordpress
* now enable multi-site
* now install buddypress
* now install multi-network plugin etc etc.I don’t know if the above order is even correct so looking for some help on how to do it.
Thank you for your help.
October 31, 2012 at 10:46 pm #144346October 31, 2012 at 9:14 pm #144343In reply to: Need original WordPress Registration page back
r-a-y
Keymaster@snowlas – Sorry! I didn’t test that snippet.
I just tested this and it will work:
`
/**
* Removes BP’s redirect from the regular WP registration page.
*/
function my_remove_bp_register_redirect() {
remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );
}
add_action( ‘bp_loaded’, ‘my_remove_bp_register_redirect’ );
`Snippet belongs in `/wp-content/plugins/bp-custom.php`.
October 31, 2012 at 8:38 pm #144341In reply to: Need original WordPress Registration page back
snowlas
ParticipantThis will work I think for the time being. I need to test a couple other things to work with my other plugins.
Something you should know, the code you gave me works. But I’m not sure it’s talking to the field names, because it doesn’t publicly display any fields now. Even ones that I have not named in the code, like names and the show people work on in my media center. Not a big deal for me, but might be a big deal for someone else. Maybe this will be fixed in the code in 1.7.
Thanks.
October 31, 2012 at 8:33 pm #144340r-a-y
KeymasterI took a look at bbPress last night to see what it was doing differently.
Note: this is becoming more into a dev discussion than anything so bear with me!
bbPress does things differently in `bbp_template_include_theme_supports()` compared to BP in `bp_template_include_theme_supports()`.
bbPress:
`https://bbpress.trac.wordpress.org/browser/tags/2.1.2/bbp-includes/bbp-template-loader.php#L13`BuddyPress (trunk):
`https://buddypress.trac.wordpress.org/browser/trunk/bp-core/bp-core-template-loader.php#L236`We could probably mirror the same changes as bbPress by adding the page conditionals in `bp_template_include_theme_supports()` like bbPress does.
What do you think, @djpaul @johnjamesjacoby ?
Update: Just read through the dev chat and it looks like Paul is already working on something!
October 31, 2012 at 6:29 pm #144332In reply to: [Resolved] Using BP with other Themes
@mercime
ParticipantTo make your WP theme compatible with BuddyPress, you need to install/activate the BP Template Pack plugin, then go through Appearance > BP compatibility process.
– https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#the-process-at-a-glance
– https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#template-packed-wordpress-themesOctober 31, 2012 at 5:07 pm #144323In reply to: How to prevent spam robots signing up
David Cavins
KeymasterI’ve found that BP Humanity helps with spam robots but not human spammers.
https://wordpress.org/extend/plugins/buddypress-humanity/For human spammers, you may need to approve each user.
https://wordpress.org/extend/plugins/bp-registration-options/October 31, 2012 at 5:03 pm #144322In reply to: Need original WordPress Registration page back
David Cavins
KeymasterI think a better bet is to collect that info on the BP registration page and then not display it on the user profile (that way you’ll still be able to use it in other ways). With BP 1.6. you can change the visibility of each xprofile field to friends only, logged-in users, or public (and force that level or allow the user to override your selection). (Visible to admin only is coming in BP 1.7, btw, which would totally fix you up.) At the moment, you can modify your theme template file (themes/yourtheme/members/single/profile/profile-loop.php) to hide some fields like this:
`about line 17:<?php $no_display_fields = array( // Enter the field name of any field that you don't want to appear on the user profile.
‘E-mail’,
‘Name of Field Hide’,
‘Another’
);if ( bp_field_has_data() && !in_array( bp_get_the_profile_field_name(), $no_display_fields ) ) : ?>`
It’s a hack, but it works for me (until BP 1.7).
October 31, 2012 at 5:01 pm #144321Paul Wong-Gibbs
KeymasterbbPress gets that “for free” because it uses custom post types and therefore WordPress’ template hierarchy. Let me see what I can do for BuddyPress.
October 31, 2012 at 4:51 pm #144319In reply to: Need original WordPress Registration page back
snowlas
ParticipantAny ideas anyone? The remove action code did not work. Maybe it’s set up wrong?
October 31, 2012 at 10:18 am #144300In reply to: WP 3.5 Upload Avatar Not Working
@mercime
ParticipantYes, thank you. I’ve seen your ticket and patch at https://buddypress.trac.wordpress.org/ticket/4634
The same issue was posted before at https://buddypress.trac.wordpress.org/ticket/4608October 31, 2012 at 9:46 am #144297@mercime
Participant== but im not able to find a way to allow members to post a blog. ==
Not quite sure what you want;
a) users able to publish a post in (single WP site) – just make default role of those who register as “Author
OR
b) users able to create blogs and publish posts (WP multisite) – you need to create a network first https://codex.wordpress.org/Create_A_NetworkOctober 31, 2012 at 3:52 am #144287In reply to: adding new members
Toby Cryns (@themightymo)
ParticipantOctober 31, 2012 at 3:26 am #144283Toby Cryns (@themightymo)
ParticipantOctober 31, 2012 at 3:22 am #144281Toby Cryns (@themightymo)
ParticipantThis is default BuddyPress functionality. You might try https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/
October 31, 2012 at 2:32 am #144274 -
AuthorSearch Results