Search Results for 'buddypress'
-
AuthorSearch Results
-
August 6, 2011 at 9:01 pm #117886
In reply to: No one is able to ‘reply’ since the last upgrade
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*
August 6, 2011 at 8:38 pm #117884In reply to: Only Admin Account can Login to Buddypress
mmendezmi
Member@n_sane I had the same issue. A quick check of the wp database showed new users were being created with user level 2, which, in this case, means that they have not confirmed their registration. Also I realized i had not received any of my dummy account registration conf. emails.
I found a workaround for this by changing the user status to 0 in the wp_core_startup file, but that was an inadvisable way of fixing the issue since it totally deactivated the email registration system, which i really don’t didn’t want to bypass, and that file will get overwritten in any bp update.
The fix was to install the ‘Mail From’ plugin by andrew hamilton. this apparently allows the registration emails to go out, and then user_status and registration can be handled the way it was designed to. I’m hosted with bluehost and have a hunch their mail system isn’t playing nice with bp and this plugin seems to allow it to do that.
August 6, 2011 at 8:11 pm #117883valuser
Participant@modemlooper on an install that is multisite there is a filter for posts and for comments. @ Paul Gibbs made the distinction above.
Would now like to control the category of posts that get posted to the activity stream. Will start a new topic re same later.
August 6, 2011 at 6:47 pm #117881In reply to: How would I?
@mercime
Participant@akyleadam what you’re trying to change was the text string “Topic created successfully” into e.g. “when submit is liked if the post was successful – do this instead of that” and the links I gave could do that.
Take the first link, instead of creating a plugin, you can add this to your active theme’s functions.php – replacing the text string in that post to your own:
`class PJW_Translation_Mangler {
/**
* Filter the translation string before it is displayed.
*
* @param $translation The current translation
* @param $text The text being translated
* @param $context The context for the translation
* @param $domain The domain for the translation
* @return string The translated / filtered text.
*/
function filter_gettext($translation, $text, $domain) {
$translations = &get_translations_for_domain( $domain );
if ( $text == ‘Topic created successfully’ ) {
return $translations->translate( ‘when submit is liked if the post was successful – do this instead of that’ );
}
return $translation;
}
}
add_filter(‘gettext’, array(‘PJW_Translation_Mangler’, ‘filter_gettext’), 10, 4);`You see where I’ve substituted you own terms with that of the code given by Westi
August 6, 2011 at 3:29 pm #117876In reply to: How to change “Search anything…”
Alan
Memberok I’ve made something really fast for you….
0.1 place this function into your functions file at the end of the closing php tag ” ?> ” !
`
<?php
function uloga_directory_search_form( $directory ) {
global $bp;
$form_id = ‘search-‘ . $directory . ‘-form’;
$input_id = $directory . ‘_sarch’;
$submit_id = $directory . ‘_search_submit’;$search_value = __( ‘Search ‘ . $directory, ‘buddypress’ );
if ( !empty( $_REQUEST ) )
$search_value = $_REQUEST;?>
<form action="" method="get" id="”>
<input type="submit" id="” name=”groups_search_submit” value=”” /><?php
}
?>`
0.2 now you have to change the bp_directory_members_search_form() function with uloga_directory_search_form( $directory ) ,replace $directory for example with “Members”
or “Groups” ,etc.August 6, 2011 at 2:41 pm #117875In reply to: How to change “Search anything…”
d3creative
Member@cezar “the language file has only one instance of “Search anything” so you can’t have a different message in the search boxes. how did you do it?”
Anyone found a workaround for this?
August 6, 2011 at 11:14 am #117872In reply to: BuddyPress 1.3 trunk and bbPress 2
Paul Wong-Gibbs
KeymasterBuddyPress has no support for bbPress 2.0 yet
August 6, 2011 at 9:28 am #117871In reply to: BuddyPress 1.3 trunk and bbPress 2
Fee
ParticipantBy the way: If I click on “Edit” here in my own topic, there’s a “Page not found”…
August 6, 2011 at 9:26 am #117870In reply to: BuddyPress 1.3 trunk and bbPress 2
Fee
ParticipantOn http://testbp.org/ bbpress 2.0 is used. I’d like to change to the plugin version, too.
Maybe a little stupid question, but I’m not sure about it: Do I have to drop the content of bbpress-folder in buddypress and install the new bbpress plugin version via wordpress plugin installation? (So that it’s in the plugins folder, not in buddypress)
In my case I don’t have to care about data, because I’m still testing and there are no real discussions. But for the others it maybe interesting: Will the forum data be catched by the new install?August 6, 2011 at 9:14 am #117869In reply to: Buddypress 1.5 Bug Reporting!
Fee
Participant@djpaul Thanks for your answer. I was not able to recreate it on the test drive – I’d have to be a group admin to see these admin links. But I saw there that you use bbpress 2.0 – do we have to change from standalone bbpress version to the bbpress wordpress plugin?
not sure about it – in this thread Bage said no: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddypress-1-3-trunk-and-bbpress-2/August 6, 2011 at 9:10 am #117868Paul Wong-Gibbs
KeymasterHi. Some URLs can be changed, some others need to be changed in the theme (or core), unfortunately.
In BP 1.5, root-level pages e.g. .com/members and .com/groups are controlled by standard WordPress Pages. You’ll be able to rename title and slug by editing the Page details.URLs like e.g. .com/members/admin/**groups**/ are changed as detailed on https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/ (“Change the URL slugs of BuddyPress components”).
URLs like e.g. com/groups/group_name/**send-invites**/ have to be changed by editing the theme files, and filtering parts of the BuddyPress core output.
August 6, 2011 at 9:01 am #117867In reply to: Buddypress 1.5 Bug Reporting!
Paul Wong-Gibbs
KeymasterNo problem. I agree that there’s probably some issue which is hard to trigger somewhere, hopefully we can find it before beta is finished
August 6, 2011 at 7:05 am #117864In reply to: Buddypress 1.5 Bug Reporting!
James
Participanthi @djpaul ,
while I’ve been trying to make a recording for you, I understood that this is not connected to activity switching (at least I cannot recreate it anymore).
the only left point is that if text string does not have spaces and is too long for one line, it won’t be transfered to the next one, but will be cut, what is quite logical since it is understood as one word. Probably, my bad again, I should study this question deeper.I am sorry, I am red and I am out
August 6, 2011 at 6:27 am #117857In reply to: How would I?
@mercime
ParticipantAugust 6, 2011 at 5:47 am #117851In reply to: How would I?
@mercime
Participant== Topic created successfully” – where is that code? ==
BP 1.2.9 at https://buddypress.trac.wordpress.org/browser/tags/1.2.9/bp-forums.php#L78
BP 1.5 beta2 at https://buddypress.trac.wordpress.org/browser/tags/1.5-beta-2/bp-forums/bp-forums-screens.php#L48
August 6, 2011 at 12:55 am #117847In reply to: buddypress translation, languages help!!
aces
ParticipantThe code I posted worked for me, and I would suggest trying it first, then seeing if you would prefer other options from the google page linked to.
August 6, 2011 at 12:52 am #117846In reply to: buddypress translation, languages help!!
aces
ParticipantPutting it in the header.php should work but might unnecessarily slow the site down a bit…..
I don’t know your theme so I wouldn’t know where to put it precisely…. I put it above the “ tag and below “ – it is important that it doesn’t go anywhere between a “
August 6, 2011 at 12:49 am #117845In reply to: Buddypress ,photos,videos,forums, and blogs.
Andrea Rennick
ParticipantAnd mercime gave the correct link already on creating a network (multisite).
August 6, 2011 at 12:49 am #117844In reply to: Buddypress ,photos,videos,forums, and blogs.
Andrea Rennick
Participant“, does Buddypress.org use multisites for its blogs and forums.”
YES. it uses multisite for individual blogs for each user. Full blogs like wordpress.com has.
“When i installed buddypress
and added the forums it says group forums???”Ye,s the forums are attached to groups. that’s how it works here too.
August 6, 2011 at 12:43 am #117843In reply to: buddypress translation, languages help!!
dubsel
Memberim not sure where in the footer. u said appropriate area. wouldnt the header be better? i dont know . you are talking bout the link u gave me specifically right? not from the google translate i posted? cause i dont know where to put that
August 6, 2011 at 12:39 am #117842In reply to: buddypress translation, languages help!!
aces
ParticipantYou put the first bit in an appropriate area in the footer – If it works how you like it then you should probably include it via your theme’s functions.php file
The second bit works in a text widget. Set up a text widget where you would like it and paste.
It translates what it can…. If there are bits that you don’t want translated you can tag them….
August 6, 2011 at 12:29 am #117841In reply to: buddypress translation, languages help!!
dubsel
Memberbeing its buddy press does it, translate the whole site, buttons groups etc?
August 6, 2011 at 12:18 am #117839In reply to: Arras Theme BP Admin Bar drops to footer
hovering
Memberhmm.. meaning? i am new to buddypress, it is my first install. i will google that. thanks!
August 6, 2011 at 12:14 am #117838In reply to: buddypress translation, languages help!!
dubsel
Memberim using blogs mu theme. wondering looking at the the page http://translate.google.com/translate_tools
where do i put the code exactly? footer ? header? idk, not sure. my site is http://www.yourwetideas.com , so idk if there is space for it with the theme. any suggestions? im very new to this. this would be the perfect solution if works.
August 5, 2011 at 11:40 pm #117836In reply to: Buddypress ,photos,videos,forums, and blogs.
pryse
MemberMultiple post of the same thing Buddypress.org did that not me and when i go to delete it goes to a page that says cant find page, like i said who ever is packaging or updating the actual site needs to fix bugs in Buddypress.org and the plugin for wordpress, you guys have been very helpful thanks…
-
AuthorSearch Results