Search Results for 'buddypress'
-
AuthorSearch Results
-
July 20, 2016 at 2:26 pm #256840
In reply to: change email sent on event creation
cosinebob
ParticipantI did check out Events Manager first, but the email send from address is not the one from Events Manager, it is from BuddyPress. And there are no emails with the message configured in Events Manager, so it is coming from BuddyPress somewhere. Just trying to find out where.
July 20, 2016 at 11:30 am #256832In reply to: How to get a blog post link from a comment link
ljmac
ParticipantThanks Henry.
I actually had worked out that function by going through some BuddyPress code, but it’s the first part that’s holding me up. Exactly how do I use preg_replace or filter_var to extract the comment ID?
It strikes me that preg_replace could be used to simply remove the comment ID from the post URL, which may be an even simple way of doing it, but once again I don’t know how to implement this.
July 20, 2016 at 7:09 am #256826In reply to: Registration for the second field group
sharmavishal
Participanti guess u need one more plugin along with that..not sure though on your requirements
check this..gives a video tutorial
July 20, 2016 at 1:02 am #256823In reply to: Buddypress Profiles Display In Wrong Order
danbp
Participant@eli225, please calm down. @sharmavishal is only trying to help you !
It’s not easy trying to help people asking questions without giving much details. It’s the case with this topic and your previous. Have you even read this before asking ?
This is not possible: Buddypress Profiles Display In Wrong Order as it is not BP but the site admin who determines this.
xprofile fields and xprofile field groups (what you call section i suppose ) are drag’n’dropable.
If despite a correct positionning in the backend, the order changed on front-end, two possibilities: the drag’n’drop was to fast or there is a js error/latentency/cookie somewhere. And this is generally due to the theme in conflict with a plugin (which could be BP).
Unfortunately, kleo is a premium theme for which you can’t expect assistance here, as we have no access to it’s code.
For the part related to BuddyPress, note that the actual version works flawlesly with the xprofile component. Nobody related a similar issue to yours recently.
So back to handcrafted annoying but very related questions:
What do you call section ?
Which type of field do you use ?Also related to general debug work:
Have you tested with another theme ?
Have you tested without any other plugin as BP ?July 19, 2016 at 11:45 pm #256820In reply to: WP theme support for sidebar.php
buddycore
Participantsidebar.php files should be placed in the root if you are using
get_sidebar('name');Otherwise you can load them withlocate_template();This will also point to the theme root, and not the BuddyPress root which is located atyour-theme/buddypress. You can go straight to BuddyPress root in your child-theme by usingbp_get_template_part()You just gotta know where and when to use each one.July 19, 2016 at 11:41 pm #256819In reply to: Incorrect all member number count
buddycore
ParticipantHave you tried wp-admin/tools/buddypress then “re-count member totals”?
July 19, 2016 at 11:11 pm #256817buddycore
ParticipantIf you look at wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/index.php That’s the template you need to edit in order to change that text.Inside
wp-content/themes/your-theme/Make a file calledbuddypress.php. In that file add the following…<?php get_header(); ?> <?php the_post(); the_content(); ?> <?php get_footer(); ?>By default BuddyPress will use a file located in your theme that currently exists, something like
page.phpas you can read about here.By creating a
buddypress.phpwe’re telling BuddyPress to use a custom template loader for all BuddyPress pages and components. Inside that file (buddypress.php) you can do anything you like for the “wrapper” around your BuddyPress stuff. In the code example above forbuddypress.phpwe’re grabbing the content but not bringing in things like<?php the_title(); ?>like you will find in a typicalpage.phpthat most WordPress themes will have.This will remove ALL page titles from BuddyPress pages, as you now have a custom “wrapper” for those areas the plugin will use.
If you wish to remove the title on a per page basis you may simply want to do a CSS solution and do target the
bodytag with CSS and then any suitable elements in the HTML. This means you could do something like…body.activity.directory div.page-inner h2 { display: none; }If you don’t want to do a CSS solution you can then look into component detection.
Hope that helps.
July 19, 2016 at 6:54 pm #256809peterBerlin
ParticipantSorry for not getting back.
Showing at all Buddypress sites.
I could see in the file directory that the avatars and group pictures are saved under the site where the user is logged in. So I guees its a matter of updating a file that tells where to upload the picture.
Kind regards
July 19, 2016 at 5:18 pm #256806In reply to: Add a new item in profile menu
sundev
ParticipantThere’s a plugin for this but might need the pro version depend on what you’re trying to achieve.
Here: https://wordpress.org/plugins/buddypress-custom-profile-menu/
If you prefer using codes from discussions, might try the links below
Creating sub nav
https://buddypress.org/support/topic/create-sub-nav-menu-item-in-profile/BuddyPress Custom Nav and Page Template
https://buddypress.org/support/topic/buddypress-custom-nav-and-page-template-2/July 19, 2016 at 2:14 pm #256801In reply to: False spam registration
danbp
ParticipantSpam is an endless discussion on the web over years. Search this forum, you’ll find many topics.
Half of my users registrations are reported by buddypress like a spam.
The question is why ? Aside, note that it is WP who controls the registration, not BuddyPress.Do you use Askimet or some other plugin who controls your registry ?
So I think it’s sufficient? no?
Simply ? NO !
Captchas are helping to determine a human activity, but generally don’t spam users.
Many spam bots go through captcha and many other goes directly to your db. And many many, if not all, can send emails !
Spammers are even cleverer as most door keepers, it’s a sad fact and a great part of that “sport” to prove it continuously.Here some common tasks explained to avoid spam and other unwanted content on your site. Note that one of the first thing to do is to use another table prefix as the universal knowed
wp_!July 19, 2016 at 1:34 pm #256799In reply to: Registration for the second field group
Daragott
ParticipantThank you so much @sharmavishal. I already have the “BuddyPress Xprofile Member Type Field ” installed. I’ve cheked all solution you describe here, I gonna work on this problem today.
Again thanks a lot.Norman
July 19, 2016 at 10:24 am #256794In reply to: Customize URL in Group Widget
danbp
ParticipantThe simplest way would be to create a copy of the group widget from within your child-theme functions.php file.
By doing this you can hardcode whatever you need to the original html. Once done, you use your widget instead the original widget. Only thing you have to take care is the function name which should be unique.
And voilĂ .
Of course, if you are a php ninja, you can probably extend the
BP_Groups_Widgetclass to get the same result. Many examples here.July 19, 2016 at 8:10 am #256790danbp
ParticipantOn a default single install, all users can access their credentials via your-site/wp-admin/profile.php
From there they have access to the WP fieldss and to the extended profil fields.
From there, they can change email & password.
Admitting you closed admin access to all users, the only other way for them to modify there email and password is to use the “forgotten your password ?” at loggin stage.
All this is not really a BP thing, but how WP is working since 2003.
The 3 mandatory field (username, email and password) belonging exclusively to WP. They are showed on registration, ASIDE BuddyPress custom fields. BP doesn’t exactly handle them, it only show them. And as these fieds are WP territory and a bit sensible, they are not accessible from within frontend profile settings.Guess the word “critical’ is a bit exagerated. Not every user change his mail or password every day. How long do you wait for a new phone number or new electricity supply ? Probably more critical things as a mail/password change !
July 19, 2016 at 5:46 am #256785In reply to: Registration for the second field group
sharmavishal
Participantcheck this @daragott …. danbp has given live examples
2.2 Member Types – Setting user member types during registration (xProfile)
this is a paid plugin
this is a free plugin by brajesh
just google “buddypress member types” this would be in top 10 results
July 18, 2016 at 9:26 pm #256778In reply to: Help Please Register Page Not working….
danbp
ParticipantNot related to BuddyPress.
July 18, 2016 at 7:20 pm #256775Topic: Poor Avatar quality
in forum How-to & Troubleshooting3T_MJ
ParticipantI’m struggling with the Buddypress Avatar quality. I’m using a high resolution device and the avatars created by buddypress look ugly.
I know I can change the size settings using bp-custom.php but this only makes the avatars bigger. If I e.g. set the avatar sizes for 250 (full) and 110 (thumb) and try to change the size using css, it messes the layout. I use the header image option, when shrinking the avatar size using css e.g.the member header is completely messed up.
Is there an option to set upload sizes and different display sizes for the frontend without messing the layout?
July 18, 2016 at 6:40 pm #256772danbp
ParticipantWordPress is a CMS.
Members are the heart of BuddyPress, which is a plugin.Once BP is activated, your user haven’t to go to their dashboard, as anything can be done from front-end. If you need wp’s bio field, you could recreate one with xprofile.
Suggest to read the Codex to understand how BP is working.
And if it’s not enough, see this plugin (but probably only usefull if you had a wp install running with many contributors before using BP).
July 18, 2016 at 6:23 pm #256771In reply to: Registration for the second field group
Daragott
ParticipantIt s ok don’t worry, I suppose BuddyPress should have something about how to create registration, I gonna check again,,, thanks
Norman
July 18, 2016 at 3:33 pm #256763In reply to: Registration for the second field group
Daragott
ParticipantSomething is missing certainly, all I have in the registration page are the fields for members,, with no choice for either models or members.
I have 2 field groups, Models and members, I ve added in each of the field groups diferent fields for name, country, city etc, different fields since I don,t want the same informations.
In member types, I have also Models and Members
In the registration page of WordPress, should I find a widget for the registration? Or Something else like that? Because I don’t see anything to add in the widget list. Thanks
Norman
Worpress: Version 4.5.3
BuddyPress: Version 2.6.1.1
Theme: Ombre Version: 1.3July 18, 2016 at 2:46 pm #256761In reply to: common forum
danbp
ParticipantThere is nothing to do ! Private groups are even private. If user 1 is only member of group A and NOT of group B, user 1 can only act with group A forum.
Aside, question related to bbPress should be asked on bbPress forum, not on BuddyPress forum.
July 18, 2016 at 11:53 am #256757In reply to: Get users using specific profile field
danbp
ParticipantNormally profile field values are clickable and by doing this, each visitor can see a list of user who entered the same value. This is buit-in and intended to work on profiles.
Another approach would be to associate a member type to that value.
MT lets you create specific Member Directory.July 18, 2016 at 10:30 am #256755In reply to: Buddypress plugin use best practices
Earl_D
Participant@sharmavishal thanks again for the response I was able to find some relevant info on the matter from these sources external to this site
Separate theme display and functionality with a build-your-own custom functionality plugin
While not specific to Buddypress it is sufficient help me understand what should go into the decision making process.July 18, 2016 at 9:30 am #256750In reply to: [Resolved] Change setting’s delete-account slug
danbp
ParticipantDocumentation for this is in bp-core-buddybar.php
Some working examples for navigation (since 2.6) here.
And here a working example for:
- remove Delete Account on user profile settings tab
- add a new sub-nav item for “Memberships” to Profile > Settings
1 )
function bpex_remove_profile_settings_sub_tab() { // remove Delete Account from Profile Settings bp_core_remove_subnav_item( BP_SETTINGS_SLUG, 'delete-account' ); } add_action( 'bp_actions', 'bpex_remove_profile_settings_sub_tab' );2 )
function bpex_add_sub_nav_to_profile_settings() { global $bp; $parent_slug = 'settings'; $child_slug = 'memberships'; //Add subnav item bp_core_new_subnav_item( array( 'name' => __( 'My Memberships', 'textdomain' ), 'slug' => $child_slug, 'parent_url' => $bp->loggedin_user->domain . $parent_slug.'/', 'parent_slug' => $parent_slug, 'screen_function' => 'bpex_profile_membership_screen' ) ); } function bpex_profile_membership_screen() { add_action( 'bp_template_content', 'bpex_profile_membership_screen_content' ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) ); } function bpex_profile_membership_screen_content() { do_action( 'my_membership_post' ); } add_action( 'bp_setup_nav', 'bpex_add_sub_nav_to_profile_settings', 100 ); function bpex_membership_stuff() { echo 'Some stuff here ?'; ?> <h2>Lorem Ipsum for ever !</h2> <p>Aenean suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, felis magna fermentum augue, et ultricies lacus lorem varius purus. Curabitur eu amet.</p> <?php } add_action( 'my_membership_post', 'bpex_membership_stuff' );Add this to bp-custom.php
July 18, 2016 at 5:31 am #256735In reply to: Issue with site activity page
sharmavishal
Participantyes first check with Customizr theme and then with buddypress media support forums
July 18, 2016 at 3:14 am #256731In reply to: Trouble with BuddyPress on secondary blog
intothemythica
ParticipantBuddypress IS network activated.
I know there’s a way. I’ve had buddy press (on a clean install) work on a sub-site before.
-
AuthorSearch Results