Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'can find the members page'

Viewing 25 results - 101 through 125 (of 398 total)
  • Author
    Search Results
  • #246682
    scoobs2000
    Participant

    ok I had a quick look at this – I’m unable to make change – eg, login as a “non-admin” user, update profile including trying to edit a field – no change,

    login as admin – and edit change the individual profile file visibility settings, save and then revert back and save again – no change,

    still able to change visibility settings from the front end (profile page)

    Not sure if its just me, I can’t seem to find the “default visibility settings” either from the admin dashboard – not sure if its gone, moved, or I’m missing something.

    for now – I’ll just override the profile loop template in the child theme and remove the change settings links and remove the visibility tab completely – in my case I really don’t need these to be changed by users as site is a private members site –

    but mentioned it, as it did appeared as a bug + original mention of the same issue.

    cheers,

    #246500
    danbp
    Participant

    Hi @ma3ry,

    unable to visit the indicated page due to redirection… BP’s xProfile text box contains are autolinked by default for the 5 first words.
    This is handy when you use a field called city for example. The city name is autolinked and let each user click on it to find other who may entered the same name.

    Of course, an about me box with a long description, which several autolinked words has less interrest. Fortunately, you can deactivate xprofile autolinking.
    Two options for this: all or selected.

    Here 3 snippets. The first can be used if you want to completely remove autolink from all field values.
    The second is a new filter to let you choose the field(s) you want to deactivate. This need two snippet. The first to rewrite a filter and the second to remove / replace the existing BP filter.

    Add the snippet to bp-custom.php.

    // remove any autolink from profile
    function remove_xprofile_links() {
    remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 );
    }
    add_action( 'bp_init', 'remove_xprofile_links' ); 
    
    // custom filter to selectively remove autolink
    function my_xprofile_filter_link_profile_data( $field_value, $field_type = 'textbox' ) {
    
        // Access the field you are going to display value.
        global $field;
    
        // In this array you write the ids (separated by comma) of the fields you want to hide the link.
        $excluded_field_ids = array(2);
    
        // If the id of this $field is in the array, we return the value only and not the link.
        if (in_array($field->id, $excluded_field_ids))
    	return $field_value;
    	
    	if ( 'datebox' == $field_type )
    	return $field_value;
    	
    	if ( !strpos( $field_value, ',' ) && ( count( explode( ' ', $field_value ) ) > 5 ) )
    	return $field_value;
    	
    	$values = explode( ',', $field_value );
    	
    	if ( !empty( $values ) ) {
    		foreach ( (array) $values as $value ) {
    			$value = trim( $value );
    			
    			// If the value is a URL, skip it and just make it clickable.
    			if ( preg_match( '@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', $value ) ) {
    				$new_values[] = make_clickable( $value );
    				
    				// Is not clickable
    			} else {
    				
    				// More than 5 spaces
    				if ( count( explode( ' ', $value ) ) > 5 ) {
    					$new_values[] = $value;
    					
    					// Less than 5 spaces
    				} else {
    					$search_url   = add_query_arg( array( 's' => urlencode( $value ) ), bp_get_members_directory_permalink() );
    					$new_values[] = '<a href="' . $search_url . '" rel="nofollow">' . $value . '</a>';
    				}
    			}
    		}
    		
    		$values = implode( ', ', $new_values );
    	}
    	
    	return $values;
    }
    
    /**
     * We remove the buddypress filter and add our custom filter.
     */
    function remove_xprofile_links() {
        // Remove the old filter.
        remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 );
        // Add your custom filter.
        add_filter( 'bp_get_the_profile_field_value', 'my_xprofile_filter_link_profile_data', 9, 2);
    }
    add_action('bp_setup_globals', 'remove_xprofile_links');
    #243615
    CreationP
    Participant

    I’m trying and trying and can’t find any lead on that.

    The codex is complex and I cannot understand the child theme concept. Is it a child theme of the bp or a child theme of the theme I use (explicit)? If it is of the theme I use how can i make it to incorporate buddypress?

    To add to the problems, alt-tab is a website that receives 1000+ visits/day and I cannot put it in maintenance mode in order to work on my leisure.

    I hate to ask you that, and I know you have better things to do rather than answering questions, but can you please take me by the hand and lead me to solving this problem as I am unable to solve it on my own. Especially in a live environment.

    When I firebug the “Members” title in the alt-tab.gr/members page I get the following:


    I am at a loss here…

    #242081
    sarahdaglish
    Participant

    Hi,

    I’ve created the members page, but I cannot create a link that my members can navigate to to get to that page.

    I didn’t want to ask them to use the URL to find that page. I just wanted a really easy way for them to click on a link to see all members of the site.

    #241208
    Graeme Fulton
    Participant

    At the top of edit.php (yourtheme/buddypress/members/single/profile/edit.php), find this bit near the top:

    if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() ) ) :
    	while ( bp_profile_groups() ) : bp_the_profile_group();

    The important part in the snippet above is this function call: bp_get_current_profile_group_id(). That grabs the current group ID from the URL, and sets it for the rest of the page. We want to change that bit.

    Just above the first code snippet I wrote, paste this query to collect all the profile groups into one variable:

    $sqlStr = "SELECT *idFROMwp_bp_xprofile_groups`”;
    $groups = $wpdb->get_results($sqlStr);`

    Now you can replace bp_get_current_profile_group_id() with this: $groups[0]

    That will leave you with this:

    if ( bp_has_profile( 'profile_group_id=' . $groups[0] ) ) :
    	while ( bp_profile_groups() ) : bp_the_profile_group(); ?>

    Now if you visit any of your edit profile group links, you’ll see all the groups on a single page.

    Next, you will probably want to remove the pagination from the page, as it will get included multiple times (since we’re in a while loop), and it is also unnecessary now that we’re showing all groups on one page.

    Remove this bit:

    <ul class="button-nav">
       <?php bp_profile_group_tabs(); ?>
     </ul> 

    Hope that works for you.

    #237555
    dudau
    Participant

    Thanks for your reply! I didn’t forget the url, it’s held in moderation. modelcasting [dot] ro is the link.

    I’ve just checked the settings and the only pages I can assign are Register and Activate. Members, Activity and other components are gone and I can’t find a way to activate them. Ok so this may be the problem after all. Do you know how can I activate the other components? They’re not retired or inactive.

    #237490
    mrgiblets
    Participant

    Hey @mcpeanut,

    AWS Pro will do exactly what you are after out of the box, it returns you to exactly where you were on the page, but you might find that you want to disable that as it can be a bit confusing for people. If they click on a link for a blog post for example, it will load the new page but not from the top if that makes sense, so you see the blog post but you may already be halfway down the page and need to scroll back up to read it from the start. This can be fixed with the inbuilt “scroll-to-top” feature though, which is what I use but I’ve removed the hard coded jQuery animation that comes with it.

    The messaging issue is that at the moment with AWS Pro activated, the dropdown list of members isn’t firing when you start typing somebody’s name in a private message. I notified the dev about it and he is fixing it for the next update though.

    #236916

    In reply to: CPT per each BP-User

    danbp
    Participant

    Add a post/page using your already created CPT to profile needs to add a tab and to handle some conditionnals for allowed usres to see it.

    Here some related topics where you can see how you could do it. Note that it doesn’t explain how to made a CPT and how to handle user access. But will easy to find on Codex or this forum.

    https://buddypress.org/support/topic/best-way-for-members-to-add-blog-posts-to-profile/

    https://buddypress.org/support/topic/adding-favourite-posts-as-a-tab-in-buddypress/

    #236411
    IHaveToDoThis
    Participant

    Hey,

    I’m pretty new to BP myself, started my site about two weeks ago. I use the Absolute Privacy plugin. You can lockdown the complete site or include a members area. What’s great about this plugin is that you can put the page ID of pages that you still want to visible to logged out users. So, for example, while logged out my users can still access the registration page, our about page, a history page and our terms and service. Other than that all other pages clicked on send them to the login page or whichever page you designate.

    Important note: You need a plugin that will show you the page ID numbers for your pages. There’s someway to find it on WP but no one on the forums explained it in a way I could understand. I use Reveal IDs. Really simple install and the IDs show up right on your pages panel. Overall the Absolute Privacy plugin was worth the double download.

    I hope this helps. If not, I think I have the names of some the other plugins I used but didn’t work for me. Maybe they might for you. Anyways, good luck!

    #235978
    MonkimoE
    Participant

    Hi, Thanks for the guide.
    Looks like the code only change the tabs name, not change the URL I wanted.

    —-
    I found what I need in core files:
    wp-content/plugins/buddypress/bp-groups/bp-groups-loader.php
    line 471 – 481

    $sub_nav[] = array(
    'name'            => sprintf( _x( 'Members <span>%s</span>', 'My Group screen nav', 'buddypress' ), number_format( $this->current_group->total_member_count ) ),
    'slug'            => 'members', //THIS IS THE ONE
    'parent_url'      => $group_link,
    'parent_slug'     => $this->current_group->slug,
    'screen_function' => 'groups_screen_group_members',
    'position'        => 60,
    'user_has_access' => $this->current_group->user_has_access,
    'item_css_id'     => 'members',
    'no_access_url'   => $group_link,
    );

    I change the ‘slug’ => ‘fans’,
    It’s works changing the url from group-name/members to group-name/fans
    but the page can’t find any fans (members) even it has.

    well..still trying now..

    danbp
    Participant

    @tinabeansy,

    first of, required pages for buddypress such as registration cannot use custom template as an usual WP page.

    “Create an Account” can be modified by using the language file, even if the site is in english.
    Read here

    BP comes with a pot file where you find ALL strings used by the plugin AND the file/line where they are used. Very handy for searching “create an account”. 😉

    For now:
    bp-core/bp-core-filters.php:487 bp-members/bp-members-screens.php:517

    Also found scratchhouse.co Is this your site ? BP seems to not be installed.
    Have you setup the pretty permalinks ? Could explain why you have trouble with some pages.

    And don’t forget: codex is your friend. 😉

    #235102
    Hugo Ashmore
    Participant

    🙂 did you check the BP codex before embarking on above?

    The docs is first port of call, we attempt to document as much as possible there on an ongoing basis, some pages are undergoing re-freshing & updating but still provide useful reference like this page:

    Template Tag Reference

    Where you might try bp_is_directory()

    Or scan through bp-core-template.php in the core files where you’ll find reference to: bp_is_members_directory()

    which actually is a very simple check to see if !bp_is_user() && bp_is_members_component() the difference remaining can only be the members main directory.

    Generally BP is well specified for template tags and ‘is’ function checks.

    #234712
    danbp
    Participant

    hi @vikingpoker,

    I’m sorry to hear that BuddyPress has upset you.
    Members are the heart of BuddyPress and the plugin comes with anything necessary to let you manage them.

    We might be able to help, would you please let us know exactly which components you activated during the BP setup ?

    BuddyPress use the WordPress page system for internal purpose only. Content is shown dynamically, depending the context. When you click on a username, BP calls the pre defined member page and use the appropriate template to show the profile.

    BuddyPress has also his own menu, on which you’ll find activity, members, groups so far you have activate the respective component. To access this menu, go to dashboard > appearence > menu. If you don’t see it, go to the top right corner of the screen and open the sceen option, and check “buddypress”.

    You’re using a framework theme, which is not the easiest to handle if you have not much experience with WP theing. I tested it a while ago and can understand your disapointment. You may probably find good advice about BuddyPress on the Hueman support forum.

    I would recommend you to use 2015 or 14 theme during the time you familiarize yourself with BuddyPress.

    I invite you to read also the Codex to start with your BuddyPress.

    Oh, and if you don’t understand why this is not a #1 topic in this forum, it’s probably because a large majority of user haven’t this issue. And discover here all what you can do with BuddyPress. 😉

    #234474
    Mathieu Viet
    Moderator

    Hi @aglekis

    I can imagine why setting the Members directory page as a Parent of the groups directory page is not working: the built url must Be in this case site.url/members/groups and then BuddyPress is looking for a member having the username “groups” and do not find it 🙂

    Instead of using the Parent attribute, you can use wp_nav_menus 😉

    #233883
    kkradel
    Participant

    Thanks @r-a-y !

    I think I’m going to leave all as is for a while. Having the activity stream as a secondary page solves a few other problems as well.

    I can’t find where to edit the size of the images in the Members widget. I looked in the theme CSS, BuddyPress CSS and Members-Widget.php and the theme functions to no avail. I’m just going to leave it.

    Thanks!

    #232505
    djsteveb
    Participant

    @danbp Thanks for looking, I was going crazy wondering if I missed something!

    Tried a few things. Ended up in wp-admin dashboard, clicked on groups, then next page, got “nothing found” – so my admin dashboard shows like 211 groups.. but only 9 or so are showing.

    I went into phpmyadmin and find that in the wp_bp_groups table, only 9 groups have name, slug, and description.. all the other groups have an ID and creator ID – but everything else is blank, and the date created field are all zeros for those. Checked the other server and it looks the same in phpmyadmin – so looks like a database fail.

    I’m going to hunt for old backups.. but in the event of just cutting losses…

    Should I go through phpmyadmin and just delete all the table rows that appear as mostly blank?
    Would I also need to edit anything in wp_bp_groups_groupmeta or wp_bp_groups_members ?

    anything in users files or others that are tied to groups that would need to be fixed?

    since the wo-admin dashboard can not find the other groups (202 of 211) – I can’t delete the groups from there.. maybe it would be better to put some kind of info in the tables that is missing, get wp- to recognize the groups and then delete from the dashboard to be cleaner?

    Wow.. sql database messed up and I don’t even know how (or when!)

    #228939
    bassieappelman
    Participant

    I can not find page.php to be honest, nor know what to do with that if I do find it.

    I found the home.php and it has the line

    <div id="content">
    		<div class="padder">
    
    			<?php do_action( 'bp_before_member_home_content' ); ?>
    
    			<div id="item-header" role="complementary">
    
    				<?php locate_template( array( 'members/single/member-header.php' ), true ); ?>
    
    			</div><!-- #item-header -->

    That looks like it should work right?
    But you say to replace the use of it with index.php, could you explain me how to?

    I am not running the older bp-default templates I guess, as I do not have that folder.

    Might just backup my database and delete buddypress to do a clean install once again, will just have to save some of my custom functions then. Because I can not seem to find anything wrong anywhere. (Yes I am kind of a noob when it comes to this 🙂 )

    #220260
    TAC28
    Participant

    Hi and thank you danbp,

    I have read the documentation but not the codex yet.

    I also had read that article on the modifying the registration page but I can’t see anything relating to changing the text on the live registration page. I don’t want it to say “Registering for this site is easy….” because they are not registering for the site, just the members area. I have changed the text in the register.php file but wherever I upload it to the changes do not show up.

    It did help me find the setting in Profile Fields to change the “This field can be seen by: Everyone” text to “This field can be seen by: All Members” 🙂

    #213013
    danbp
    Participant

    Hi @gabe462,

    the members directory shows by default all members.
    The search field on this directory let you find a user, and if one is find, BP shows the username linked to this member profile.

    The member loop is a core component and cannot be deactivated. But you can remove anything from the directory template.

    Why want you go to the directory, which you don’t want to use, if the final result is to see the searched member ? Go directly to this member profile. 😉

    You can try to modify the template to simplify it so far as possible and only use the member search on the (ex) directory page.

    bp-templates/bp-legacy/buddypress/members/index.php contain the member search field
    bp-templates/bp-legacy/buddypress/members/members-loop.php

    Copy both directory (starting by /buddypress/ ) and files into your child-theme (to get /your-child-theme/buddypress/members/index.php) and try to remove what you don’t want to see.

    Without waranty, i’ve never tested this.

    #212526
    struth
    Participant

    I will simplify the question & add some screen shots in the hope of better explaining my issue

    Members list’s only showing pagination for two members in each page?

    site showing only two members

    site showing only two messages

    I’m unsure how this happened only up until a few days ago the members directory showed 20 members, I thought it might be the latest update though I now doubt it. Is anyone having the same issue?

    Can someone please point me to where I might find the file and code to change this behaviour from 2 members back to 20?

    #207684
    1a-spielwiese
    Participant

    I had a look on your registration page where you have a few countries for members to select, but when I choose one, the same dropdown menu appears.

    Yes, a better solution I do not have for the moment.

    the only way I can see to do it is to add, UK, then a list of counties. USA and then a list of states, and so on which would mean I would have a list a mile high of all the different countries and local areas.

    Yes – if you do not trust in the old plugins, which @noizeburger recommands:

    https://buddypress.org/support/topic/resolved-different-profile-types-and-different-user-roles/

    or trust in them, but find (like me) no way, to make them working as they should.

    #203974
    1a-spielwiese
    Participant

    How can I delete the text, which is striked within the screeshots:

    (More or less) resolved; the solution you can find there:

    http://dontdream.it/support/topic/reshaping-the-search-result-pages/#post-3042 (regarding ‘löschen’)

    http://dontdream.it/support/topic/reshaping-the-search-result-pages/#post-3043 (regarding member-search)

    https://buddypress.org/support/topic/which-files-create-the-page-titles-site-wide-activity-members-and-groups/#post-203963 (regarding the page-title).

    —-

    I abstained from deleting ‘All member’ + number; instead I re-designed it:

    http://dontdream.it/support/topic/reshaping-the-search-result-pages/#post-3044 (3rd section)

    —-

    The result is:

    http://1a-spielwiese.de/mitglieder/?field_124=Team&bp_profile_search=326

    and

    http://1a-spielwiese.de/mitglieder/?field_124=Fan&bp_profile_search=326

    #196197
    Julia_B
    Participant

    Thanks @danbp showing site activity by using the topic filter sounds good. I went to this link – https://buddypress.org/support/topic/changing-the-default-activity-filter/ – but the posts there were a bit over my head as a beginner to be honest. However, the link in that thread to this article was useful: http://wpmu.org/how-to-customize-the-buddypress-activity-loop/

    Problem is I can’t find the the /activity/ folder in my theme. Where do I need to look for that?

    Also, is there a way I can allow members to post directly to the activity stream from the homepage, Facebook style, and for members comment on each others’ posts from there too?

    I appreciate the help.

    #192183
    peter-hamilton
    Participant

    Hi durkk

    Those points are exactly what I am working on now.

    Up until last night I had no membership plugin installed so now working on styling the pages involved and figuring out how to make seperate non-member redirects.

    This makes the sidebar on those pages look weird at the moment.

    Groups pages are missing one div class, will do that after breakfast and this post.

    As soon as I am finished with the layout for the bigger screen I will add @media queries for mobile and tablets.

    Category archives are more difficult and I am trying to make page templates for separate search/archives, but I am not great with coding and only know css, I am dependent on copy/paste and analyzing php to make minor adjustments.

    If you want to see more you can use my temporary login

    username: demo
    password: demo

    At the moment there are about a dozen members (beta testers) helping me out finding the bugs, bless their souls, I am lucky that they have the patience for my slow progress.

    Thanks for having a look and I will post here when these topics are solved.

    P.H.

    #190323
    danbp
    Participant

    @annyrakesh,

    please don’t jump into old post !

    You want to modifify this phrase:

    Registering for this site is easy. Just fill in the fields below, and we’ll get a new account set up for you in no time. who sit on the register page.

    The string is in bp-templates/bp-legacy/buddypress/members/register.php line 22
    and in the pot file of bp 2.0.2 at line 1236.

    The pot file is a working copy for translators, not the file to modify to get any customization.
    To do this you have to use poEdit, or a similar software.
    poEdit only read the pot file, then he create a po file on the fly and when you save this po file, poEdit generate a mo file.

    This is a compiled file, not human readable, who is used by the gettext php module to translate the strings he find in the buddypress code.

    Pot files are provided by the plugin authors. It’s a simple text format file with a specific syntax.
    The po file is also a text format file, but written differently, as it contains the original string in english AND the translation of this string in a foreign language.
    And the mo file is the system file who have to use on the server.

    register.php is a template file, so if you have to change only this phrase, you can make a copy and paste it into your child-theme and modify the wording directly in the file. Not orthodox, but it works.

    If you have other question about translation or wordings, feel free to open your own topic, give your bp version, theme name and used language on the installation.

    Topic closed.

Viewing 25 results - 101 through 125 (of 398 total)
Skip to toolbar