This topic has 13 replies, 2 voices, and was last updated 10 years by Abe.

  • Author
  • #18399
     alexlars
    Participant

    Hi!

    I have some questions regarding the Quick Profile Navigation:

    1. Is it possible to show the newest registered members at the beginning of the navigation. That would make it much easier for users because they wouldn’t have to go to the end of all profiles just to see a new member.

    2. How do you display all the information of a member in the quick profile navigation? Right now my website only shows a “match” button and then the option to send a message and become friends with and not the information that the members has filled in.

    3. Also, the match number of my site always is at 50. No more no less. I have different members but the number wont change.

    Thanks!

    #18672
     Abe
    Keymaster

    hi, I think I already responded to your exact same questions somewhere. Let me know if that is not the case

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #19300
     alexlars
    Participant

    Hello!

    I found some similar questions and answers but i cant get it to work.

    https://www.flickr.com/photos/125095542@N07/14151616877/

    As you can see from the photo above the profile fields are totally empty. I have tried to add some codes to the sweetdate child theme but no result. Please help!

    #19531
     Abe
    Keymaster

    For the profile groups to show to the right of the profile image as tabs please see this topic: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #19577
     alexlars
    Participant

    I have tried to add the code but it doesn’t change anything. Please help me instead of just keep showing old posts that doesn’t help me at all. My site is: http://www.listchoosr.com/

    Once again. I’VE READ ALL THE OTHER POSTS regarding this problem but non of them helped me.

    #19918
     Abe
    Keymaster

    Hi @alexlars
    That is the solution on resolving that, not just a link to a old topic. What code have you added and what profile group names you want to show?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #21472
     alexlars
    Participant


    Here is my code. The two profile fields I want to add is “looking for” and one called “fysiskt”. I have added the two profile fields under the menu Users > Profile fields > Add new field but still nothing.


    This is what i want my site to look like with the profile fields and everything!

    #21473
     alexlars
    Participant
    #21663
     Abe
    Keymaster

    Hi, Your fields are case sensitive and must be exactly how you added them in Users – Profile fields and your code must match that name exactly in the group attribute

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs()
    {
        global $bp_tabs;
        $bp_tabs = array();
        $bp_tabs[] = array(
                'type' => 'cite',
                'name' =>  __('Looking for', 'kleo_framework'),
                'group' => 'Looking for',
                'class' => 'citetab'
        );
     
        $bp_tabs[] = array(
                'type' => 'regular',
                'name' => "fysiskt",
                'group' => 'fysiskt',
                'class' => 'regulartab'
        );
     
     
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #23601
     alexlars
    Participant

    Hi!
    I still cant get it to work.
    My groups i want to show are: Allmänt (Primary), Om, Socialt.

    #23602
     alexlars
    Participant

    Please give me the exact code that i should copy and put in my sweetdate childtheme functions

    #23842
     Abe
    Keymaster

    I think the instructions are pretty straight-forward, so if the group names are exactly as you provided here is the code:

    COPY CODE
    
    //my changes to profile tabs 
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs() 
    {
    	global $bp_tabs;
    	$bp_tabs = array();
    	$bp_tabs[] = array(
    			'type' => 'regular',
    			'name' =>  'Allmänt (Primary)',
    			'group' => 'Allmänt (Primary)',
    			'class' => 'regulartab'
    	);
    
    	$bp_tabs[] = array(
    			'type' => 'regular',
    			'name' => 'Om',
    			'group' => 'Om',
    			'class' => 'regulartab'
    	);
    	$bp_tabs[] = array(
    			'type' => 'regular',
    			'name' => 'Socialt',
    			'group' => 'Socialt',
    			'class' => 'regulartab'
    	);
    	/* rtMedia tab - only if plugin installed */
    	if (class_exists('RTMedia')) 
    	{
    		$bp_tabs['rtmedia'] = array(
    				'type' => 'rt_media',
    				'name' => __('My work', 'kleo_framework'),
    				'class' => 'mySlider'
    		);
    	}
    
    	/* Bp-Album tab - only if plugin installed */
    	elseif (function_exists('bpa_init')) {
    		$bp_tabs['bp-album'] = array(
    				'type' => 'bp_album',
    				'name' => __('My photos', 'kleo_framework'),
    				'class' => 'mySlider'
    		);
    	}
    	
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #23997
     alexlars
    Participant

    Thank you it finaly worked! Awesome support 🙂

    #24004
     Abe
    Keymaster

    Great. Closing topic

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

Viewing 14 posts - 1 through 14 (of 14 total)

The topic ‘Problems with the quick profile navigation’ is closed to new replies.

Log in with your credentials

Forgot your details?