Move Tabs

This topic contains 5 replies, has 3 voices, and was last updated by  Jeff Adams 5 years, 11 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #2207

    Jeff Adams
    Buyer
    Post count: 1780

    Is there a way to change the arrangement of the tabs? I would like to make the “bio” tab first. Thanks! 🙂

    #2208

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    UWP>Profile>Choose the tabs to display in Profile
    Just deselect all the tabs and add them back in the order you want.

    Stiofan

    #2212

    Jeff Adams
    Buyer
    Post count: 1780

    Thanks Stiofan,

    I had already tried this. “bio” isn’t in there. Sorry, I didn’t explain this because I figured you would know this.

    https://veganlinked.com/profile/vegan/bio/

    I changed the name of bio to “My Vegan Story” in the “Form Builder”. If you look at my profile via the link above you’ll see the bio titled this way.

    #2223

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    ah ok, i will flag this for patrik to see if there is a hook to do this but i’m not sure there is. We do plan on making this possible in settings in future but its not at the moment.

    Stiofan

    #2225

    Patrik
    Moderator
    Post count: 1971

    Hi Jeff,

    This is not possible using the code right now without modifying core files of the plugin but I have tried following CSS which may help you out but this is not the best solution but will help you to achieve what you want. Put the following CSS in your style.css of the current theme:

    
    
    .uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul {
        display: flex;
    }
    
    .uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:last-child {
        order: 1;
    }
    
    .uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:first-child {
      order: 2;
    }
    
    .uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:nth-child(2) {
      order: 3;
    }
    .uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:nth-child(3) {
      order: 4;
    }
    .uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:nth-child(4) {
      order: 5;
    }

    You need to change/add CSS when you add more tabs or you can take help of frontend developer for this customization.

    Let me know your inputs.

    Regards,
    Patrik

    #2226

    Jeff Adams
    Buyer
    Post count: 1780

    Hey, thanks, I’ll archive this for now. I would like to move it. But, right now I’m I am inundated with getting my site right via GeoDirectory. I read through GD last night and got real excited about version two. Now I’m all freaking because I just spent the last month and a half building on V1 and just spent over $1,200 on developing an addon for my site… I really want to try out V2 and that’s all I can think about right now…

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

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket