This topic has 1 reply, 1 voice, and was last updated 10 years by kenzy.

  • Author
  • #24514
     kenzy
    Participant

    Hi there,

    i’ve seen some examples to ad tabs next to the profile picture… but when i do like it is explained on this forum (sweetdate -> functions.php editing) then i only see the base tab but can’t see the other tabs from other profile groups šŸ™

    Can Someone please help me šŸ™

    This is my 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['looking-for'] = array(
                'type' => 'cite',
                'name' =>  __('Looking for', 'kleo_framework'),
                'group' => 'Looking for',
                'class' => 'citetab'
        );
     
        $bp_tabs['base'] = array(
                'type' => 'regular',
                'name' => __('About me', 'kleo_framework'),
                'group' => 'Base',
                'class' => 'regulartab'
        );
    
    	    $bp_tabs[ā€™samenvattingā€™] = array(
                'type' => 'regular',
                'name' => __(ā€™Samenvattingā€™, 'kleo_framework'),
                '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'
            );
        }
    <code></code>
    #24681
     kenzy
    Participant

    Found the problem šŸ™‚

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

The topic ‘Profile tabs’ is closed to new replies.

Log in with your credentials

Forgot your details?