MyBB Community Forums

Full Version: Adding a Tabbed Member Profile Page for MyBB
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
(2014-11-24, 05:23 PM)AmatureDJ Wrote: [ -> ]Does this work for Mybb 1.8.3?

That's a good question. I'd like to know too.
I also want to know if this works for 1.8
If you know what you're doing, then it's really easy to make this usable for 1.8.3.
Posting to reserve. Gonna do this tomorrow. Tx op
(2014-12-04, 02:34 AM)SwordSlayer Wrote: [ -> ]
(2014-11-24, 05:23 PM)AmatureDJ Wrote: [ -> ]Does this work for Mybb 1.8.3?

That's a good question. I'd like to know too.
yes it does
Can someone please tell me how to add tabs: Profile Comments and Userpage? I installed those mods and now they don't show up.
(2015-04-30, 09:10 AM)ComicFanatic Wrote: [ -> ]Can someone please tell me how to add tabs: Profile Comments and Userpage? I installed those mods and now they don't show up.

1.6 or 1.8?

I'm using 1.6, I had the profile comment plugin installed BEFORE I changed the layout to tabs. And it works nicely for me. 
nice tutorial, this looks really cool! I'm gonna give it a try on next few days Smile
Not working in mybb 1.8.
If your having trouble in 1.8 try removing the noConflict() in the jQuery code 1.8 uses the jquery library that doesn't require noConflict()

so use this

<script type="text/javascript">
jQuery(document).ready(function($) {
    $(".tab_content").hide(); 
    $("ul.tabs li:first").addClass("active").show();
    $(".tab_content:first").show(); 
    $("ul.tabs li").click(function() {
        $("ul.tabs li").removeClass("active"); 
        $(this).addClass("active"); 
        $(".tab_content").hide(); 
        var activeTab = $(this).find("a").attr("href"); 
        $(activeTab).fadeIn();
        return false;
    });
});
</script>
Pages: 1 2 3 4