Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 9,726 through 9,750 (of 69,119 total)
  • Author
    Search Results
  • #256840
    cosinebob
    Participant

    I 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.

    #256832
    ljmac
    Participant

    Thanks 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.

    #256826
    sharmavishal
    Participant

    i guess u need one more plugin along with that..not sure though on your requirements

    check this..gives a video tutorial

    Setup BuddyPress Member Types on KLEO theme

    #256823
    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 ?

    #256820
    buddycore
    Participant

    sidebar.php files should be placed in the root if you are using get_sidebar('name'); Otherwise you can load them with locate_template(); This will also point to the theme root, and not the BuddyPress root which is located at your-theme/buddypress. You can go straight to BuddyPress root in your child-theme by using bp_get_template_part() You just gotta know where and when to use each one.

    #256819
    buddycore
    Participant

    Have you tried wp-admin/tools/buddypress then “re-count member totals”?

    #256817
    buddycore
    Participant

    If 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 called buddypress.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.php as you can read about here.

    By creating a buddypress.php we’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 for buddypress.php we’re grabbing the content but not bringing in things like <?php the_title(); ?> like you will find in a typical page.php that 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 body tag 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.

    peterBerlin
    Participant

    Sorry 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

    #256806
    sundev
    Participant

    There’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/

    #256801
    danbp
    Participant

    Spam 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_ !

    #256799
    Daragott
    Participant

    Thank 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

    #256794
    danbp
    Participant

    The 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_Widget class to get the same result. Many examples here.

    danbp
    Participant

    On 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 !

    #256785
    sharmavishal
    Participant

    check this @daragott …. danbp has given live examples

    2.2 Member Types – Setting user member types during registration (xProfile)

    this is a paid plugin

    BuddyPress Member Types

    this is a free plugin by brajesh

    BuddyPress Xprofile Member Type Field

    just google “buddypress member types” this would be in top 10 results

    #256778
    danbp
    Participant

    Not related to BuddyPress.

    #256775
    3T_MJ
    Participant

    I’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?

    danbp
    Participant

    WordPress 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).

    #256771
    Daragott
    Participant

    It s ok don’t worry, I suppose BuddyPress should have something about how to create registration, I gonna check again,,, thanks

    Norman

    #256763
    Daragott
    Participant

    Something 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.3

    #256761

    In reply to: common forum

    danbp
    Participant

    There 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.

    #256757
    danbp
    Participant

    Normally 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.

    Member Types

    #256755
    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

    Functions.php vs. Functionality Plugin

    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.

    #256750
    danbp
    Participant

    Documentation for this is in bp-core-buddybar.php

    Some working examples for navigation (since 2.6) here.

    And here a working example for:

    1. remove Delete Account on user profile settings tab
    2. 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

    #256735
    sharmavishal
    Participant

    yes first check with Customizr theme and then with buddypress media support forums

    #256731
    intothemythica
    Participant

    Buddypress IS network activated.

    I know there’s a way. I’ve had buddy press (on a clean install) work on a sub-site before.

Viewing 25 results - 9,726 through 9,750 (of 69,119 total)
Skip to toolbar