Search Results for 'buddypress'
-
AuthorSearch Results
-
January 22, 2018 at 3:06 pm #270243
avaiya
ParticipantI didn’t see anything on this page about the unsubscribe link. https://codex.buddypress.org/emails/ Do you have any thoughts on that?
Here’s the issue I’m having:
Something is not working in the “unsubscribe” link in these notification emails. When I click to unsubscribe, it takes me to my Profile page and this error message shows up:
“Something has gone wrong. Please go to your notifications settings to unsubscribe from emails.”
And clicking on “Notifications” on the BuddyPress profile page doesn’t take me to the place where I can edit my email notifications. It just takes me to the overall Notifications menu.
Thanks,
Ande
January 22, 2018 at 8:58 am #270232Varun Dubey
Participant@avaiya, For details, you can also check https://codex.buddypress.org/emails/
January 22, 2018 at 8:57 am #270231In reply to: Upload Video Files to Member Profile
Varun Dubey
ParticipantYou can use 3rd party plugins like rtMedia. https://wordpress.org/plugins/buddypress-media/
January 22, 2018 at 8:51 am #270228In reply to: Email templates missing !!
Varun Dubey
Participant@saviour-photos You can find template for each email trigger inside the dashboard
https://codex.buddypress.org/emails/ You can also add additional email to available actions.January 22, 2018 at 8:24 am #270227stoi2m1
ParticipantOk, not a bug
The function that returns the HTML exists in the bp-legacy theme. In
buddypress/bp-templates/bp-legacy/buddypress-functions.phpSo I copied the file into my child theme and modified it to act like I wanted.
Problem Solved!
January 21, 2018 at 8:18 pm #270218January 21, 2018 at 8:26 am #270214In reply to: customizing buddypress profile page
Varun Dubey
ParticipantYou can override default template files inside the child theme and adjust UI as you need. You can check corresponding template files name at following path
Files inside /buddypress/members/single/ will be responsible for single profile layout.January 21, 2018 at 8:07 am #270212In reply to: Bullet Points on the Buddypress Menu
Varun Dubey
ParticipantYou could add a template file named buddypress.php to your theme’s directory, and BP would use that template instead since that file is ahead of page.php in the hierarchy above.
If your theme has full-width template file for page, you can use the same to create buddypress.php
For further details, you can check https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
January 20, 2018 at 11:23 am #270207In reply to: Adding time and date to messages
Henry Wright
ModeratorIf your question relates to your bbPress forum then try asking at bbPress. Alternatively see here for information on the
bp_activity_add()function:January 20, 2018 at 11:20 am #270206Henry Wright
ModeratorTry creating the pages manually by going to the WordPress admin area. You should then be able to associate each of the pages you have created with your BuddyPress components.
January 20, 2018 at 11:18 am #270205In reply to: Blog ‘Page Not Found’
Henry Wright
Moderatormembers/username/ is generated by BuddyPress and author/username/ is generated by WordPress. You don’t have to merge them, they can live peacefully together without problems.
January 19, 2018 at 5:41 pm #270194In reply to: Bullet Points on the Buddypress Menu
otty-dev
ParticipantI’m still trying to find what’s going on. I tried link-style none but that doesn’t work.
How exactly can I choose the full-width page template for all of the BuddyPress pages?
January 19, 2018 at 4:46 pm #270190avaiya
ParticipantHey Peter, thanks for your help. Another question.
I notice in using BuddyPress, a page gets created that shows all the Members of our site.
Not just our membership members, but our wordpress members as well.
Is there any problem if I just delete this page so no one can see it?
Thanks,
Ande
January 19, 2018 at 4:24 pm #270189In reply to: usernames only
Henry Wright
ModeratorThe plugin hasn’t been abandoned. It’s still maintained by @r-a-y. See https://github.com/r-a-y/buddypress-usernames-only
January 19, 2018 at 3:33 pm #270188In reply to: How to hide CPT Links from profile view
Peter Hardy-vanDoorn
ParticipantThis may depend on your theme, and I don’t have rtmedia installed so you’ll have to work it out for yourself, but you should be able to just hide that tab using CSS.
On my install of BuddyPress a class of
logged-inis added to thebodyelement when the user is logged in. Check your page to make sure that this is the same for you too.If it is, you can add CSS to target the rtmedia tab for people who aren’t logged in. Like I said, I don’t have rtmedia installed, so you’ll have to find out the class or ID of the media tab you want to get rid of for yourself (sorry!). But, for the sake of this example, let’s pretend it has an ID of “rtmediatab”.
So, you could add a line something like this to your CSS and the tab would be hidden:
body:not(.logged-in) #rtmediatab { display: none; }Obviously it doesn’t remove it completely as the underlying HTML will still be in the page, but it won’t be visible on the page and that’s better than nothing.
Hope that helps
January 19, 2018 at 1:26 pm #270181In reply to: usernames only
Venutius
ModeratorI’ve looked at BuddyPress Usernames Only and have come up with a fix for it. I’m trying to get in touch with the plugin author to see if we can push out a fix. If you are able to edit the plugin I can let you know what the fix is.
January 18, 2018 at 3:13 am #270163stoi2m1
ParticipantI found the default theme was also showing issues which I missed.
I had both Groups and Members as a Child Page to My Activity Page, named Community. This was causing both single members profiles and single groups to not work. Until I find a solution I have made them Main Pages (no parent assigned). Is there a way to set the slug? I found these deprecated constants, is there some new way?
Deprecated Method in bp-custom.php use:
define ( 'BP_MEMBERS_SLUG', 'community/groups' ); define ( 'BP_GROUPS_SLUG', 'community/members' );From the following link:
I also found my other issue in bp-custom.php. Forgot all about that one.
I created an aggregate feed called “My Feed” to display a more personal feed (which is working just fine). I used it on both the Activity in Profiles and the Main Activity Stream (site wide). I am using the following function to change the default sub nav for activities in profiles (Profile >> Activity >> Default Sub Nav) to “My Feed”. This works for profiles but causes the Site Activity to stop working.
function gzp_set_default_activity_sub_nav() { bp_core_new_nav_default ( array( 'parent_slug' => buddypress()->activity->id, 'subnav_slug' => 'my-feed', 'screen_function' => 'gzp_bp_my_feed_screen_activity' ) ); } add_action( 'bp_setup_nav', 'gzp_set_default_activity_sub_nav', 20 );January 17, 2018 at 8:26 pm #270159Varun Dubey
Participant@krzysztofsw BuddyPress use the same user tables, all WordPress users will already be listed in BuddyPress member directory, and they cannot register again with same email id.
January 17, 2018 at 8:25 pm #270158In reply to: How do i make customization
Varun Dubey
Participant@keshabee You can change the statement via changing language strings. Try Loco translate plugin to change strings within the dashboard.
You can check https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/ for further details.January 17, 2018 at 8:19 pm #270156Varun Dubey
ParticipantHi @freddurst1805
You can use this approach to load template files from your plugin
https://gist.github.com/modemlooper/fb70735dd78de7cd2032function screen_test(){ add_action('bp_template_title', 'screen_test_title'); add_action('bp_template_content','screen_test_content'); bp_core_load_template(apply_filters('bp_core_template_plugin', 'members/single/plugins')); } // buddypress-template folder and file name which you have created inside your plugin. function screen_test_content() { include 'buddypress-template/some-template.php'; }January 17, 2018 at 10:24 am #270149HDcms
ParticipantHI,
I’m trying to filter the buddypress members in the list of members and display them in descending order of precedence on a numeric xprofile field (0 to 10).
Example of filter xprofile field “I search” = xprofile field “I am”I found the function that should work, but I can not do the query:
function my_bp_loop_querystring( $query_string, $object ) { if ( ! empty( $query_string ) ) { $query_string .= ‘&’; } // $query_string .= ‘per_page=2’; //works $jerecherche = xprofile_get_field_data(‘Je recherche’, $user_id, $multi_format = ‘comma’ ); $query_string .= ‘search_terms=true&per_page=2’; // <del datetime="2018-01-17T10:23:06+00:00">works</del> return $query_string; } add_action( ‘bp_legacy_theme_ajax_querystring’, ‘my_bp_loop_querystring’, 20, 2 );January 17, 2018 at 2:29 am #270147stoi2m1
ParticipantSuper weird. I disabled all of my plugins except Buddypress, Activated the Parent Theme and still had issues. Copied over the BP Default theme and things work.
I have not changed anything in the parent theme, very odd that it seems to be the issue. Maybe some of this happened when I upgraded to the most recent WP and BP.
January 16, 2018 at 9:51 am #270130In reply to: Can’t import user’s birthday from CSV
vinkgg
ParticipantI’ve managed to export the contacts list from the old intranet (made in .net) in an excel workbook, with that, i created each column matching the fields from wordpress and also my custom fields for buddypress as well.
So far i can import the users with no problem, the issue is, is that in the old intranet they had a “birthday widget” showing the co-workers who are celebrating in the current month. I also added a “Birthday Date” column, but when i type the date, the Import Plugin does not take the data in.
One thing i tried is to create the user in wordpress dashboard, type in all the fields from the user, including the birthday date and export it to a csv file, it did show the date in the column, so i copied the same format as it came from the file, and import it, but it does not import. I’ve tried different date formats but none of those worked out
YYYY-D-M
YYYY-D-M HH:MM:SS
M-D-YYYY HH:MM:SSAny ideas?
Thanks for the reply leog371January 16, 2018 at 1:40 am #270119In reply to: Can’t import user’s birthday from CSV
leog371
ParticipantWhat are you exporting this csv out of? Is it from another WordPress or BuddyPress Site? If so, do you have all fields in your new intrasite setup like you did in the last one? If this is from some other social networking script, do all your data columns and things match up?
January 16, 2018 at 12:46 am #270115In reply to: How to add buddypress favorite button on a blog post
cding
Participant@leog371 It seems you use the wp delete comment function. I want the comment author can delete their own comment and this is why I want to use buddypress delete activity function. Does your function allow the comment author to delete their own function?
And it is difficult for me find where to put the second codes.
I try to put it after-
<?php
wp_list_comments( array(
'avatar_size' => 100,
'style' => 'ol',
'short_ping' => true,
'reply_text' => twentyseventeen_get_svg( array( 'icon' => 'mail-reply' ) ) . __( 'Reply', 'twentyseventeen' ),
) );
?>but it is not the right place. I want show the button after each comment.
-
AuthorSearch Results