Search Results for 'buddypress'
-
AuthorSearch Results
-
February 5, 2010 at 12:27 pm #62461
In reply to: BuddyPress Classifieds Component 1-beta released !
gpo1
ParticipantWhere’s the T&C for it?
February 5, 2010 at 8:38 am #62457In reply to: Help with BuddyPress Friends Loop
Sarah Gooding
MemberOk so that middle part of the code with the avatar section didn’t paste in correctly, but you get the idea. …
February 5, 2010 at 8:28 am #62456In reply to: [Resolved] Limited Checkbox Selection
Nick Watson
ParticipantDoes anyone know how to implement this into the profile fields on buddypress?
February 5, 2010 at 7:14 am #62454In reply to: Removing "members" slug from user links
modemlooper
ModeratorFebruary 5, 2010 at 5:23 am #62452alextababa2
ParticipantHi Etiviti
Thanks for the follow up, it’s really appreciated. The issue seems to have been only related to my admin username which was created before buddypress was installed.
Also, it wasn’t the spaces that were throwing if off… it might be some other vauge incompatibility between wmpu and buddypress names.
I’ll double check before I ask for some more info next time, but I’m sure someone with the same issues as you will benefit from your effort.
February 5, 2010 at 5:03 am #62450peterverkooijen
Participant@snark, I simply removed the function bp_core_disable_welcome_email() from bp_core_activation.php. But then the password in the welcome email is wrong, as discussed here. Haven’t been able to come up with an explanation/solution for that…
February 5, 2010 at 4:50 am #62449In reply to: A basic question about the menu in BP1.2…
angophora
Member“The default theme isn’t intended to be used on hosted blogs on a WPMU install, so the links do break as you’ve found.”
Oh… I see. Thank you! With that information, I have now found this and will give it a shot (I guess it’s obvious, but I was just confused about how it was supposed to work):
https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
February 5, 2010 at 3:19 am #62445paulhastings0
ParticipantThe comments are <i>not</i> in moderation, I just checked.
In the file: wp-content/plugins/buddypress/bp-activity/bp-activity-widgets.php
I made the following change around line 30:
<?php if ( /*bp_has_activities( 'type=sitewide&max=' . $instance['max_items'] . '&per_page=' . $instance['per_page'] )*/ bp_has_activities( 'object=blogs&action=new_blog_comment' ) ) : ?>
And the unregisterd user comments are still not showing up. This is the “site wide activity” widget I’m using. Any ideas?
February 5, 2010 at 3:03 am #62443peterverkooijen
Participant1) By default, an email isn’t sent to the user because the user password is sent via plain text (not a good thing security-wise).
That makes absolutely no sense. If you use the forgot password feature, the password is sent via plain text as well. Why is that OK and sending a password upon registration not?
Most big sites, Facebook, LinkedIn, newspapers, have no problem sending passwords via plain text. Online security is always a balance between security and convenience.
Buddypress is a social network. It’s not a banking website. If you start using credit card payments or paid membership, those scripts usually come with the own security.
Who is going to steal a password to someone’s account on a blog network? Has that ever happened? What would they do with it?
Just my 2 cents. Flame away…
February 5, 2010 at 3:02 am #62442In reply to: Dahsboard BP admin bar links going to root domain
alextababa2
ParticipantOkay so it works with a new user – even with a space in the name, because the admin bar hyperlinks point to the username eg:
http://bcosuluvit.com/alistarbright/members/alistarbright/
Not
http://bcosuluvit.com/alistarbright/members/Ali starbright/
But the user created before Buddypress was installed still won’t get correct hyperlinks.
February 5, 2010 at 2:39 am #62440snark
ParticipantStill not working. I did find the filter itself in the file /plugins/buddypress/bp-core/bp-core-activation.php:
add_filter( ‘wpmu_welcome_user_notification’, ‘bp_core_disable_welcome_email’ );
I suppose I could just delete that line to remove the filter, but then every time BP is updated it’ll probably get overwritten and I’ll forget all about it. Not sure why your filter hook didn’t work. Any ideas?
Thanks a million for your help — I really appreciate it.
February 5, 2010 at 1:14 am #62434snark
ParticipantRe: 1) I tried this and it didn’t work (no error, but didn’t fix the problem). What directory exactly should the bp-custom.php file be put in? I tried it in two places —
/wp-content/plugins/bp-custom.php (where you said to put it, though that seems odd)
and
/wp-content/plugins/buddypress/bp-custom.php
— and neither worked.
Re: 2&3) Will do. Thanks.
February 5, 2010 at 12:31 am #62432r-a-y
Keymaster1) By default, an email isn’t sent to the user because the user password is sent via plain text (not a good thing security-wise).
You can re-enable this welcome email by adding the following code to /wp-content/plugins/bp-custom.php (create this file if you don’t have one – be sure to add PHP open and closing tags as well):
remove_filter( 'wpmu_welcome_user_notification', 'bp_core_disable_welcome_email' );2) Please post the avatar bug on BuddyPress Trac:
https://trac.buddypress.org/newticket
Login with the same credentials you use on buddypress.org.
3) WP-reCAPTCHA is not compatible with BuddyPress.
BuddyPress uses a different registration mechanism.
You might want to try one of these solutions listed here:
http://www.bp-tricks.com/tips_and_tricks/stopping-the-sploggers/
February 4, 2010 at 11:36 pm #62430Peter Anselmo
ParticipantOn the 2nd, Andy worked on this by trimming all whitespace from newly entered values. You can see the changes here:
https://trac.buddypress.org/changeset/2547
I tested this on http://testbp.org/, and yes, it does keep the problem from happening for new members. There are two outstanding issues with this however.
1. It silently trims the whitespace, so you have no way of knowing that your username is not what you entered. At a minimum, it should send you an updated username with the confirmation email. Only after looking at the site activity, and seeing my username with the space trimmed, did I realize why I wasn’t able to log in.
2. It doesn’t help any of the existing users with spaces in their names (such as myself on this forum).
Admittedly, this is a tough problem to solve for existing users, but yes, AFIK, it is still unsolved.
February 4, 2010 at 11:04 pm #62428Peter Anselmo
ParticipantThis may or may not be your problem, but Buddypress has some issues with spaces in names. Try clicking on the right of this post to view my profile. It uses my actual name “Peter Anselmo” instead of my username “peter-anselmo”. It won’t work. Fun.
February 4, 2010 at 10:49 pm #62427In reply to: Does somebody have a sample: bp-custom.php
r-a-y
KeymasterHere you go!
<?php
//CUSTOM CODE FOR BUDDYPRESS
//PUT YOUR CODE HERE
?>What can you put in bp-custom.php?
Lots of things!
Check out this codex article:
https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/
February 4, 2010 at 10:44 pm #62426In reply to: .Pot File : Why can't I just change this in NotePad
Peter Anselmo
ParticipantYeah, the command line conversion is a barrier for a lot of people, as they either don’t have command line access, or if they do, gettext is not installed on the server.
You can find some alternate ways to generate .mo files here:
https://codex.wordpress.org/Translating_WordPress
Also, there is no bp-custom.php file by default. You just create it as a new file, and put it directly in the plugins folder. BuddyPress will automatically check there for it.
Yeah, it’s a bit of work to change strings, but anything simpler would likely not be upgrade-proof, or would be much slower.
February 4, 2010 at 10:41 pm #62425In reply to: forums : Fatal error: Cannot redeclare checked()
cargo
MemberWordPress-MU 2.9.1.1 + BuddyPress 1.2rc (upgrade from 1.1.3) = same problem.
February 4, 2010 at 10:27 pm #62424In reply to: BuddyPress Classifieds Component 1-beta released !
Michael Berra
ParticipantIf you want, you could use mine As a Demo: Wp.graphic-studio.ch/network
February 4, 2010 at 10:02 pm #62420In reply to: BuddyPress Classifieds Component 1-beta released !
Jean-Pierre Michaud
Participantbug reports:
in theme/classified/classifieds-loop.php
bp_ajax_querystring() does not exists in your plugin, so it breaks the engine… how did you get it to work without the function (this is a critic, not a question btw)?
“BuddyPress Classifieds – Roles & Capabilities” was with a wrong version and try to update itself all the time…
February 4, 2010 at 9:36 pm #62417In reply to: BuddyPress Classifieds Component 1-beta released !
abcde666
Participantcool stuff, many thanks for this !
Sorry if I have missed – do you have a demo-website to see this plugin in action ?
Thanks again !
February 4, 2010 at 9:34 pm #62416In reply to: .Pot File : Why can't I just change this in NotePad
Peter Anselmo
ParticipantYou should be able to use any text editor to make changes. You just have to be sure to duplicate the string on the “msgstr” line, and only change the duplicate.
Check out this article:
https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/
February 4, 2010 at 9:17 pm #62414In reply to: How do I edit the BuddyPress Menu
danbpfr
ParticipantOpen the pot file in a text editor and search for the expression you want to change.
Near it you can see the file name and the line where it is located
February 4, 2010 at 8:43 pm #62411grosbouff
Participant@MrMaz :
could you check at my Classifieds plugin and see how to do this in it ?
I did try but there’s always templates which do not load…
Thanks a lot !
https://wordpress.org/extend/plugins/buddypress-classifieds
Your functions
-bp_classifieds_locate_template
-bp_classifieds_filter_template
-bp_classifieds_load_template
are at the bottom of the -templates.php page
February 4, 2010 at 8:40 pm #62409In reply to: How do I edit the BuddyPress Menu
zastrow
ParticipantThanks.
Where is the Language File ? I want to change the verbage of the menu.
Like Blog —> Latest Updates
I found a BuddyPress.Pot file, but this doesn’t seem like a language file to me.
-
AuthorSearch Results