Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • pavit Moderator
    #1044733

    Hello

    You will need to create a custom-html module and publish it in sidebar-1 position with this code

    <div><!-- Nav tabs -->
    <ul class="nav nav-tabs">
    <li class="active"><a href="#home" data-toggle="tab">Most read</a></li>
    <li><a href="#profile" data-toggle="tab">Latest news</a></li>
    </ul>
    <!-- Tab panes -->
    <div class="tab-content">
    <div id="home" class="tab-pane active">{loadposition tab-1}</div>
    <div id="profile" class="tab-pane">{loadposition tab-2}</div>
    </div>
    </div>

    Then publish your modules in tab-1 and tab-2 position assigning them to all menu items

    P.S.

    I tried to login on your website but administrator page doesn’t showing

    Best regards

    tenaki Friend
    #1044755

    Hi thanks for that with your code it works plus in the custom html module you have to prepare content.

    For reference the code in the documents is wrong

    <div><!-- Nav tabs -->
    <ul class="nav nav-tabs">
    <li class="active"><a href="#home" data-toggle="tab">Most read</a></li>
    <li><a href="#profile" data-toggle="tab">Latest news</a></li>
    </ul>
    <!-- Tab panes -->
    <div class="tab-content">
    <div id="home" class="tab-pane active"></div>
    <div id="profile" class="tab-pane"></div>
    </div>
    </div>

    The correct one you supplied is

    <div><!-- Nav tabs -->
    <ul class="nav nav-tabs">
    <li class="active"><a href="#home" data-toggle="tab">Most read</a></li>
    <li><a href="#profile" data-toggle="tab">Latest news</a></li>
    </ul>
    <!-- Tab panes -->
    <div class="tab-content">
    <div id="home" class="tab-pane active">{loadposition tab-1}</div>
    <div id="profile" class="tab-pane">{loadposition tab-2}</div>
    </div>
    </div>
    pavit Moderator
    #1044775

    Hello

    We are happy it is solved now.

    Best regards.

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

This topic contains 3 replies, has 2 voices, and was last updated by  pavit 7 years, 2 months ago.

The topic ‘Tab content not showing’ is closed to new replies.