Search Results for 'buddypress'
-
AuthorSearch Results
-
September 18, 2016 at 3:31 pm #258895
danbp
ParticipantWhat i want is to show view page content in the landing page of buddypress which is home.php . Is there any way i can achieve that?
bp-templates/bp-legacy/buddypress/members/single/home.php contains dynamic templates and shows by default the member activity template.
If you use the above code, you’ll get Resume as default content. This is the simpliest way to achieve what you want.
FYI: the Resume plugin is 4 years old and no more maintained. In 4 years, many things changed in xprofile component and what you actually can do with these fields is much more evoluted than 4 years ago. IMO, you wouldn’t even have to use it, as you can get a similar result directly with BuddyPress.
September 18, 2016 at 3:08 pm #258893danbp
Participantsee here:
September 18, 2016 at 5:59 am #258881In reply to: Not all widgets shows on front page
SunshineMagic
ParticipantI have this issue too. I can’t believe that no one has responded to you in 4 months!??
It’s clearly a buddypress issue too as it doesn’t work with the theme I am using nor does it work with the default wordpress theme and apparently while it used to work with your theme, after a reinstall, not anymore.
So it’s definitely a buddypress issue but no one responds in 4 months?? How on earth are we to get what we need working if the response time is more then 4 months??
Feeling concerned that buddypress was the wrong choice. This is my first issue and it’s a bad first experience! Unfortunately I put 2 months into building this site and I can’t go back now so it looks like I’m going to have broken pieces and likely have to dump buddypress and maybe even wordpress all together and build a custom PHP site asap, unless someone gets back to yoUs soon.
I hope they do cause I’ve been having fun w/ WP and BP but functionality clearly comes before fun…
September 18, 2016 at 2:06 am #258879shanebp
ModeratorThese forums are for BuddyPress.
Please contact me via the PhiloPress website.September 17, 2016 at 6:45 pm #258870In reply to: [Resolved] keep me logged in
danbp
ParticipantHi @kyla123,
if you use BuddyPress Login widget, you have a “Remember me” checkbox by default.
If you added an extra page just to let members log in (?), read this WP documentation and check your customization.
September 17, 2016 at 6:32 pm #258866danbp
ParticipantHi,
not sure i understand correctly, but if you want the resume page to show as default landing tab (in place of the user activity) when you are on a profile, you can use this:
define( 'BP_DEFAULT_COMPONENT', 'resume' );Add it to bp-custom.php
Codex reference.
September 17, 2016 at 10:53 am #258854Topic: How @mention all members
in forum How-to & TroubleshootingJulia_B
ParticipantIs there way to @mention all members?
This is something I’d like to be able to do on the bbpress forum on my buddypress site. I find forum mentions draw more site engagement than emailing all members, but filling a post with all members’ @ names detracts from the post content. So is there a function like @all or @everyone?
Thanks 🙂
September 17, 2016 at 4:58 am #258847themichaelglenn
ParticipantI’ve built a BuddyPress specific menu (using the BuddyPress Logged In links).
In which file, and what location, do I add the code @socialc provided?
September 17, 2016 at 3:53 am #258846In reply to: Adding xprofile fields to activity header
ckchaudhary
ParticipantThe filter you are looking for is bp_get_activity_action. So you’ll need to do something like:
function SN_member_header( $action ) { return $action . "success!"; } add_filter( 'bp_get_activity_action', 'SN_member_header');For a better understanding, you can check the code in function bp_get_activity_action in plugins/buddypress/bp-activity/bp-activity-template.php
September 16, 2016 at 10:03 pm #258842In reply to: Stop confirmation email from settings change email
knowitallninja
ParticipantSorry for all the updates, I have found the problem. In bp-settings-actions.php there is a line in the default handling of a password change that says this: $_POST[’email’] = $update_user->user_email;
By commenting that line out, it fixes the problem and my code works. It’s not ideal though as whenever I update buddypress it’ll change back. So if anyone knows a way around that then that would be great.
Otherwise I have a working script. For future reference it’s here:
function action_bp_core_general_settings_after_save() {
$useremail = $_POST[’email’];
$userpassword = $_POST[‘pwd’];
$current_user = wp_get_current_user();if(wp_check_password( $userpassword, $current_user->user_pass, $current_user->ID)) {
if ( $current_user->user_email != $useremail ) {
delete_user_meta( $current_user->ID, ‘pending_email_change’ );
$userdata = array(
‘ID’ => $current_user->ID,
‘user_login’ => $current_user->user_login,
‘user_email’ => $useremail
);
$result = wp_insert_user( $userdata );
}
}
};
add_action( ‘bp_core_general_settings_after_save’,’action_bp_core_general_settings_after_save’ );September 16, 2016 at 8:18 pm #258828In reply to: Activate Page
Venutius
ModeratorThat’s strange, and you went to settings/buddypress/pages and set the activate page to be the activate page in buddypress?
September 16, 2016 at 7:33 pm #258826In reply to: Activate Page
Venutius
ModeratorAh ok, its the same as for the register page, you create a blank page and link it in the Buddypress page settings.
September 16, 2016 at 5:35 pm #258822In reply to: Order posts
ckchaudhary
ParticipantHi,
BuddyPress has little to do with posts’ order. I can bet its something else. You need to provide more details..September 16, 2016 at 5:34 pm #258821In reply to: Order posts
Venutius
ModeratorI think you need to provide more information about this error, Buddypress does not normally work with posts so I would like to know why you think this is BP? If you unload all other plugins does the issue still appear?
September 16, 2016 at 5:13 pm #258816In reply to: Activate Page
Brajesh Singh
ParticipantHave you associated the newly created activate page in your BuddyPress settings? You can do it from Dashboard->Settings->BuddyPress->Pages screen.
If you have already done that then please do post the error message that you are recieving.
September 16, 2016 at 4:52 pm #258810In reply to: [Resolved] Redirect on Logout
danbp
ParticipantHi,
the warnings cames probably because the logout function is called twice.
Check your theme’s functions.php or see for a specific setting.Can you test the standard behave with a Twenty theme and BP, and all other plugins deactivated.
Remove also the custom code while testing.If still an issue, consider this plugin. All is in the title, but it redirects to homepage on logout.
September 16, 2016 at 4:21 pm #258802In reply to: Buddypress login – logout – lost password
Venutius
ModeratorThis one should be the answer:
https://buddypress.org/support/topic/error-404-page-not-found-3/
However it did not work for me, I’ve raised a thread about it here:
https://buddypress.org/support/topic/redirect-on-logout/
It may work for you, since it worked for the other chap
September 16, 2016 at 4:02 pm #258799In reply to: Buddypress login – logout – lost password
Venutius
ModeratorJust found this, will give it a try.
https://buddypress.org/support/topic/logout-redirect-from-wp-admin-bar-may-be-useful/
September 16, 2016 at 12:26 pm #258794In reply to: Forums and Groups
Earl_D
ParticipantI believe this shows how to set up sitewide and groups forums together
September 16, 2016 at 8:22 am #258789In reply to: Trouble uploading File
danbp
ParticipantHi @jeremybivaud,
without seeing your custom code, it’s difficult to say if you have some issue or conflict with other plugins.
I can’t help you much for doing your stuff, but have you used the BP_Attachment API ? This can probably help you.
You may also find some related topics to attachment by searching the forum. 😉
September 16, 2016 at 8:10 am #258787In reply to: How edit meta title for activity in bp-custom.php
danbp
ParticipantOh, i see what you mean now. You want to modify the page title. You used the word WEB in place of site name…. and activity meta title is something different.
You have to write a function to apply to
bp_modify_page_titlefilter.Reference
You’ll certainly find many snippet for this by searching the forum.September 16, 2016 at 8:05 am #258785danbp
Participanti checked the hebrew translation available on GlotPress. It seems to me it is correctly translated.
Copy/pasting RTL strings doesn’t work here… anyway here what i get (href is LTR here – but is ok in poEdit)
החשבון שלך הופעל בהצלחה! אתה עכשיו יכול <a href="%s">להתחבר</a> עם שם המשתמש והסיסמא שהכנסת כשנרשמת לאתר.September 16, 2016 at 7:23 am #258782In reply to: How edit meta title for activity in bp-custom.php
inzerat
ParticipantThis is part of buddypress. On activity page have meta title description “Side wide Activy – Name of web” a i want change this in bp-custom.php
September 16, 2016 at 7:15 am #258780In reply to: How edit meta title for activity in bp-custom.php
danbp
ParticipantThis is very vague, can you give details please ?
Site-Wide Activity – Web is not part of BuddyPressSeptember 16, 2016 at 2:50 am #258773In reply to: [Resolved] Buddypress Last Seen Privacy
kyla123
ParticipantI fixed it. Opened the editor on my theme (style.css) and entered this code at the very bottom:
#buddypress span.activity { display: none; } -
AuthorSearch Results