Search Results for 'buddypress'
-
AuthorSearch Results
-
August 7, 2011 at 10:42 pm #117942
In reply to: BuddyPress 1.5 compatibility for plugins and themes
Pisanojm
Participant@karmatosed the plugin is here (and this link is posted at the above link I posted):
http://bp-tricks.com/wp-content/uploads/external-member-blogs.zipIt is listed on that page, but for some reason is not int he WP repository… it’s a great plugin, and no others really like it (via @boromir)
August 7, 2011 at 10:05 pm #117935enderandrew
MemberI don’t think this is a problem with Buddypress, so much as any popular WordPress site. They will get plenty of spambots registering for accounts.
There are plenty of solutions including:
Captcha plugins like SI Captcha or WP-Recaptcha
Akismet
Bad Behavior
Etc,However, the best solution is active moderation. And I’m guessing the crew that runs this site is also busy developing Buddypress, bbPress, etc. to spend a bunch of time moderating this site. Perhaps they should seek out volunteers to help moderate.
August 7, 2011 at 9:58 pm #117934In reply to: Adding another groups tab…
asdfgh
Member@developingtrial I figured out a way round it, which works better for me. Not too sure about creating another set of groups though, still haven’t managed to do it. I used Jet Event System, which practically works the same as groups, if configured correctly. Hope that helps
August 7, 2011 at 9:43 pm #117932aces
ParticipantI wish the post edit and delete buttons would work again…
I would guess that modemlooper’s reference is to the buddypress plugin directory under `/wp-content/plugins/buddypress/bp-themes/`
If the equivalent page under your current child theme doesn’t exist, it might be better to copy and edit the above page to your child theme’s directory
August 7, 2011 at 9:36 pm #117931aces
ParticipantAugust 7, 2011 at 9:26 pm #117929rosewater1
MemberThank you very much for the information!
The issue I’m having now is finding that php file. I don’t see anything like groups/single in my file manager and I manually downloaded buddypress in hopes I could upload a missing file but I didn’t see anything like it there either. Just last week thought I have a record of being in groups/single/activity.php as well as groups/single/forums.php but now I can’t find those either. My buddpress site is working fine though without any problmes online. Maybe I’m just not accessing the bp-default/groups/single file correctly?
In case this is relevant info, I have used BP-compatibility so I’m not using the default theme but have BP matching the rest of the site instead.
Could you help me figure out where to go to get the php file mentioned above?
Thank you.
August 7, 2011 at 9:17 pm #117928In reply to: Avatar Upload Problem During Registration
rbbp22
MemberHi folks
I think I may have found a solution, at least to how I was experiencing it.
I am using wp 3.2.1. and BP 1.2.9 with a bp-default child theme
FIRST the default gravatar image was not showing at all in firefox. I don’t use gravatars on my site and filter them out all together. I applied a filter to
bp_get_signup_avatar
to replace the gravatar.com image with a link to mysteryman directly on my site.SECOND
I think the function
bp_get_signup_avatar_dir_value() in bp-core-templatetags.php
has a bug.
The last line applies the filter.
Code:return apply_filters( ‘bp_get_signup_avatar_dir_value’, $bp->signup->avatar_dir );However, when the user signups up or uploads an avatar $bp->signup->avatar_dir seems to be empty.
There are a few if then else statements that work with $signup_avatar_dir so this seems to be the relevant value to pass along. I changed the last line in the function code to
Code:return apply_filters( ‘bp_get_signup_avatar_dir_value’, $signup_avatar_dir );THIRD
I found that register.php in the theme is lacking a hidden field for the signup avatar directory
The relevant section is: (REF section A)
Code:<h4><?php _e( ‘Your Current Avatar’, ‘buddypress’ ) ?></h4>
<p><?php _e( "We’ve fetched an avatar for your new account. If you’d like to change this, why not upload a new one?", ‘buddypress’ ) ?></p><div id="signup-avatar">
<?php bp_signup_avatar() ?>
</div><p>
<input type="file" name="file" id="file" />
<input type="submit" name="upload" id="upload" value="<?php _e( ‘Upload Image’, ‘buddypress’ ) ?>" />
<input type="hidden" name="action" id="action" value="bp_avatar_upload" />
<input type="hidden" name="signup_email" id="signup_email" value="<?php bp_signup_email_value() ?>" />
<input type="hidden" name="signup_username" id="signup_username" value="<?php bp_signup_username_value() ?>" />
</p><?php wp_nonce_field( ‘bp_avatar_upload’ ) ?>
You’ll notice that the section just below this that handles what the user sees when cropping has an additional hidden field.
Code:<input type="hidden" name="signup_avatar_dir" id="signup_avatar_dir" value="<?php bp_signup_avatar_dir_value() ?>" />I inserted this in the (Section A) that the user sees before and after cropping
August 7, 2011 at 8:40 pm #117926In reply to: What happened to my index.php template?
glensutton
MemberThis is the same problem I am having. I am editing a buddypress site for a friend but I do not have access to his root sever or host, and I am trying to edit his HOME page but it doesn’t look anything like it should… or like I think it should anyway.
August 7, 2011 at 7:18 pm #117923Tammie Lister
ModeratorJust to check, when you say up to date are you using the beta BuddyPress 1.5 or 1.2.9? I ask as the template pack hasn’t been updated yet so could be the issue.
August 7, 2011 at 1:25 pm #117917In reply to: Reply is not working in Activity page
DoctorDR
Member@djpaul “No, this site has plenty of its own problems. It is not reflective of either BuddyPress 1.2.9 or 1.5.”
I haven’t had time to set up a test site myself, does anyone have a publicly accessible BP 1.5 site that they don’t mind us looking at?
BuddyPress Test Drive – http://testbp.org/ – still lists itself as running BP 1.3, so I’m assuming that is no longer reflective of the latest dev version..?
August 7, 2011 at 12:21 pm #117916In reply to: MediaWiki Theme Integration
LPH2005
ParticipantAs always – Thank you!
The table was in the default.css for buddypress and not the templates default.css. I tried to add it to the wiki default.css file but couldn’t get it to work. Instead, I just modified the default.css for buddypress and now the calendar shows properly.
August 7, 2011 at 9:53 am #117914valuser
ParticipantJust to confirm all is well. Apology for wasting your time. installed beta 2-4940 on another multisite install and the installation etc went smoothly – there is a blogs directory.
August 7, 2011 at 5:20 am #117908In reply to: Editing my theme to work with BP 1.5-beta2
enderandrew
MemberTo clarify, I’ve seen the documentation here:
https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
But my theme template is fairly complex, and I’m not sure where to begin. I’d really appreciate some help.
August 7, 2011 at 5:20 am #117907In reply to: How would I?
akyleadam
Member@mercime also your example failed. I keep all functions I write in a separate folder in a lib folder, and called that custom function via: include_once(TEMPLATEPATH . ‘lib/CustomFunctions/DisplayMessage.php’);
How ever the message is un changed (the message I was cheking for was: The topic was created successfully
and I testing by changing to: I am changed.
This is the ode:
class translator
{
function filter_gettext($translation, $text, $domain)
{
$translations = $get_translations_for_domain($domain);if( $text == ‘The topic was created successfully’)
{
return $translations->translate(‘I am changed’);
}return $translation;
}
}add_filter(‘gettext’, array(‘translator’, ‘filter_gettext’), 10, 4);
August 7, 2011 at 5:12 am #117906August 7, 2011 at 5:07 am #117904In reply to: MediaWiki Theme Integration
@mercime
Participant@LPH2005 In /wiki/extensions/Calendar/templates/default.css find
`table tr td, table tr th {
padding: 8px;
vertical-align: middle;
}`
change padding: 8px; to padding: 7px;August 7, 2011 at 3:03 am #117902In reply to: How would I?
akyleadam
Member@mercime except what I want is:
When the page loads after you hit submit you are greeted with the success or error message (on any thing you do such as saving, editing…what ever) What i want is to take that text out, replace it with a java script pop up – so when the page loads to show you your new topi that pop up displays to say what ever message i gave it for error or success. I have a nice android based notification popup to do this so it will not be obtrusive.
This is my end game.
August 6, 2011 at 11:41 pm #117900valuser
Participantsite tracking is turned on.
August 6, 2011 at 11:27 pm #117899valuser
ParticipantAm running multisite
Have bp on blog 2 define ( ‘BP_ROOT_BLOG’, 2 ); in wp-configthe tab ‘Pages’ in Dashboard > BuddyPress > Components on blog 2 has no mention of a blogs directory
earlier in the Dashboard Network admin there was a warning
“Some of your WordPress pages are linked to BuddyPress Components that are disabled: ok, one ore time. Repair” pressed button . this seemed to redirect me to BuddyPress Components on blog 1 which had the same set-up in the tab ‘Pages’
(i did have 1.29 on this site)Directories
Associate a WordPress Page with each BuddyPress component directory.
Activity Streams
Discussion Forums
User Groups
Members
then registration.
no mention of a Blog Directory ?
(just posted from another blog (id8) and it was picked up by the activity stream)If this is not replicated in your setups then i must have installed incorrectly and thats ok please say so as i don’t want to waste your time.
just testing this out the version im using is trunk 4932
August 6, 2011 at 11:05 pm #117897In reply to: Automatically Add Newly Registered to Group
Miko
Participantthat plugin posted by @mercime works a treat for me (BuddyPress Auto Group Join) and I am on the latest versions of WP and BP
August 6, 2011 at 10:49 pm #117896Boone Gorges
KeymasterGo to Dashboard > BuddyPress > Components. Do you have the blogs component turned on? (And, just to double check, are you running Multisite?)
August 6, 2011 at 10:41 pm #117895In reply to: MediaWiki Theme Integration
LPH2005
ParticipantGuess it would help to be able to edit this topic but it comes up with an error …
Meant @mercime …
August 6, 2011 at 9:41 pm #117893Paul Wong-Gibbs
Keymaster‘Your reply was posted successfully’ is here: https://buddypress.trac.wordpress.org/browser/tags/1.2.9/bp-groups.php#L378
What do you want to do?
August 6, 2011 at 9:38 pm #117892In reply to: Reply is not working in Activity page
Paul Wong-Gibbs
KeymasterNo, this site has plenty of its own problems. It is not reflective of either BuddyPress 1.2.9 or 1.5.
August 6, 2011 at 9:02 pm #117888In reply to: Reply is not working in Activity page
Stigmartyr
MemberSo how does this explain why it’s not working on this site then either?
I have to go to the last page of a post to find this box. If you click ‘New Reply’ above it does NOTHING on the Buddypress.org site itself … *le sigh*
-
AuthorSearch Results