Show a Category on Portal Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    Show a Category on Portal

    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Show a Category on Portal

    Post by Take Notes Fri 25 Dec - 19:16

    I was wondering how to how a category on the portal like the support's.

    Here is a link to the same question: https://help.forumotion.com/t144001-show-forums-category-in-portal

    Was also wondering if you could show individual forums from separate categories as well.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Sun 27 Dec - 6:39

    Bump.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Mon 28 Dec - 6:56

    Bump
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Tue 29 Dec - 10:50

    Bump.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Sat 2 Jan - 13:35

    Bump
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Sun 3 Jan - 19:29

    Bump
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    In progress Re: Show a Category on Portal

    Post by 10spetter10 Mon 4 Jan - 1:37

    I don't really see an option like that in the admin panel so my guess would be that they copied the html and pasted it in a widget. That way it is possible to add forums from different categories.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51500
    Reputation : 3523
    Language : English
    Location : United States

    In progress Re: Show a Category on Portal

    Post by SLGray Mon 4 Jan - 1:50

    There is a widget called News that will show topics from the forum you choose.



    Show a Category on Portal Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Mon 4 Jan - 1:56

    SLGray wrote:There is a widget called News that will show topics from the forum you choose.
    But how to show forums?
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51500
    Reputation : 3523
    Language : English
    Location : United States

    In progress Re: Show a Category on Portal

    Post by SLGray Mon 4 Jan - 1:58

    You will have to create a customized widget.
    Code:
    [url=link to forum]forum title[/url]



    Show a Category on Portal Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Mon 4 Jan - 2:07

    SLGray wrote:You will have to create a customized widget.
    Code:
    [url=link to forum]forum title[/url]
    I'd like to make it visually the same, not just a hyperlink.
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    In progress Re: Show a Category on Portal

    Post by 10spetter10 Mon 4 Jan - 10:02

    This is the default html used to create the categories. It should do the trick to get the forumstyle inside a widget:

    Code:
    <!-- START category block --->
    <div class="forabg">
       <div class="inner">
          <span class="corners-top"><span></span></span>
          <!-- START category title --->
          <ul class="topiclist">
             <li class="header">
                <dl class="icon">
                <dd class="dterm">
                   <div class="table-title"><h2>--category title---</h2></div>
                </dd>
             </li>
          </ul>
          <!-- END category title --->
          <!-- START forums/topics --->
          <ul class="topiclist forums">
             <li class="row">
                <dl class="icon">
                   <dd class="dterm">
                      <div style="display: block;">
                         <h3 class="hierarchy"><a href="---url to forum" class="forumtitle">Your first forum</a></h3>
                         <br>
                         ---forum description---
                         <br>
                      </div>
                   </dd>
                </dl>
             </li>
          </ul>
          <!-- END forums/topics --->
          <span class="corners-bottom"><span></span></span>
       </div>
    </div>
    <!-- END category block --->

    Show a Category on Portal XIpCBM3
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Mon 4 Jan - 11:39

    Thank you, what about each forum's icon?
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    In progress Re: Show a Category on Portal

    Post by 10spetter10 Mon 4 Jan - 12:00

    The icons you can see on the portal here are inside the forum description. Just add float left to them and it should be oke.

    Code:
    <img src="---url to image---" style="float: left;" />
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Wed 6 Jan - 23:02

    Not working for me, it looks all weird and different and weird things happen.
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    In progress Re: Show a Category on Portal

    Post by 10spetter10 Wed 6 Jan - 23:41

    Show a Category on Portal LCCKsqQ

    This is the code I used for the example. Normally it should do the trick.

    Code:
    <!--    START category block -    -->
    <div class="forabg">
       <div class="inner">
          <span class="corners-top"><span></span></span>   
          <!--    START category title -    -->   
          <ul class="topiclist">
             <li class="header">
                <dl class="icon">
                   <dd class="dterm">
                      <div class="table-title">
                         <h2>
                              --category title--- 
                         </h2>
                      </div>
                   </dd>
                </dl> 
             </li>
          </ul>
          <!--    END category title -    -->   
          <!--    START forums/topics -    -->   
          <ul class="topiclist forums">
             <li class="row">
                <dl class="icon">
                   <dd class="dterm"> 
                      <div style="display: block;">
                         <h3 class="hierarchy">
                            <a href="---url to forum" class="forumtitle">Your first forum</a> 
                         </h3>
                         <br />
                         <img style="float: left;" src="http://2img.net/i/bl/logo.png" /> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 
                      </div>
                   </dd>
                </dl>   
             </li>
          </ul>
          <!--    END forums/topics -    --> <span class="corners-bottom"><span></span></span>   
       </div>
    </div>
    <!--    END category block -    -->
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Thu 7 Jan - 0:37

    But when you add a widget, there is another bar above for the widget title.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Fri 8 Jan - 0:37

    Bump.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Sat 9 Jan - 15:21

    Bump.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Sun 10 Jan - 15:40

    Bump.
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    In progress Re: Show a Category on Portal

    Post by 10spetter10 Sun 10 Jan - 18:35

    Select 'no' by 'Use a table type' on the widget options.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Sun 10 Jan - 18:40

    Can you please send me code via PM? I keep trying to select it and I keep getting the numbers on sides as well.
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    In progress Re: Show a Category on Portal

    Post by 10spetter10 Sun 10 Jan - 22:58

    I'll set it as inline code, then there are no numbers. Wink

    Code:
    <!--    START category block -    -->
    <div class="forabg">
      <div class="inner">
          <span class="corners-top"><span></span></span> 
          <!--    START category title -    --> 
          <ul class="topiclist">
            <li class="header">
                <dl class="icon">
                  <dd class="dterm">
                      <div class="table-title">
                        <h2>
                              --category title---
                        </h2>
                      </div>
                  </dd>
                </dl>
            </li>
          </ul>
          <!--    END category title -    --> 
          <!--    START forums/topics -    --> 
          <ul class="topiclist forums">
            <li class="row">
                <dl class="icon">
                  <dd class="dterm">
                      <div style="display: block;">
                        <h3 class="hierarchy">
                            <a href="---url to forum" class="forumtitle">Your first forum</a>
                        </h3>
                        <br />
                        <img style="float: left;" src="http://2img.net/i/bl/logo.png" /> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
                      </div>
                  </dd>
                </dl> 
            </li>
          </ul>
          <!--    END forums/topics -    --> <span class="corners-bottom"><span></span></span> 
      </div>
    </div>
    <!--    END category block -    -->
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Mon 11 Jan - 21:24

    Works! Thank you so much! But how do I add more forums?
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Tue 12 Jan - 23:01

    Bump.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    In progress Re: Show a Category on Portal

    Post by TheCrow Tue 12 Jan - 23:06

    @Forumedic you do exactly the same steps.



    Show a Category on Portal Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Tue 12 Jan - 23:06

    Luffy wrote:@Forumedic you do exactly the same steps.
    But won't it create a new category? As part of the code is creating the category.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    In progress Re: Show a Category on Portal

    Post by TheCrow Tue 12 Jan - 23:07

    Yes it will. You want it to create an other category in the same forum?



    Show a Category on Portal Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    In progress Re: Show a Category on Portal

    Post by Take Notes Tue 12 Jan - 23:12

    Luffy wrote:Yes it will. You want it to create an other category in the same forum?
    I think? I want another forum in the same category.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    In progress Re: Show a Category on Portal

    Post by TheCrow Tue 12 Jan - 23:19

    Ok so you have this code here:
    Code:
    <!--    START category block -    -->
    <div class="forabg">
      <div class="inner">
          <span class="corners-top"><span></span></span> 
          <!--    START category title -    --> 
          <ul class="topiclist">
            <li class="header">
                <dl class="icon">
                  <dd class="dterm">
                      <div class="table-title">
                        <h2>
                              --category title---
                        </h2>
                      </div>
                  </dd>
                </dl>
            </li>
          </ul>
          <!--    END category title -    --> 
          <!--    START forums/topics -    --> 
          <ul class="topiclist forums">
            <li class="row">
                <dl class="icon">
                  <dd class="dterm">
                      <div style="display: block;">
                        <h3 class="hierarchy">
                            <a href="---url to forum" class="forumtitle">Your first forum</a>
                        </h3>
                        <br />
                        <img style="float: left;" src="http://2img.net/i/bl/logo.png" /> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
                      </div>
                  </dd>
                </dl> 
            </li>
          </ul>
          <!--    END forums/topics -    --> <span class="corners-bottom"><span></span></span> 
      </div>
    </div>
    <!--    END category block -    -->

    to create to you a forum (the entire thingy) and a single category (the one inside it).
    Using the list element is the easiest way. So in order for you to make an other one you need to add this part:
    Code:
     <!--    START forums/topics -    --> 
          <ul class="topiclist forums">
            <li class="row">
                <dl class="icon">
                  <dd class="dterm">
                      <div style="display: block;">
                        <h3 class="hierarchy">
                            <a href="---url to forum" class="forumtitle">Your first forum</a>
                        </h3>
                        <br />
                        <img style="float: left;" src="http://2img.net/i/bl/logo.png" /> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
                      </div>
                  </dd>
                </dl> 
            </li>
          </ul>
          <!--    END forums/topics -    -->

    Once more exactly after this part in the code. So you need to have this:
    Code:
    <!--    START category block -    -->
    <div class="forabg">
      <div class="inner">
          <span class="corners-top"><span></span></span> 
          <!--    START category title -    --> 
          <ul class="topiclist">
            <li class="header">
                <dl class="icon">
                  <dd class="dterm">
                      <div class="table-title">
                        <h2>
                              --category title---
                        </h2>
                      </div>
                  </dd>
                </dl>
            </li>
          </ul>
          <!--    END category title -    --> 
          <!--    START forums/topics -    --> 
          <ul class="topiclist forums">
            <li class="row">
                <dl class="icon">
                  <dd class="dterm">
                      <div style="display: block;">
                        <h3 class="hierarchy">
                            <a href="---url to forum" class="forumtitle">Your first forum</a>
                        </h3>
                        <br />
                        <img style="float: left;" src="http://2img.net/i/bl/logo.png" /> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
                      </div>
                  </dd>
                </dl> 
            </li>
          </ul>
          <!--    END forums/topics -    -->
    <!--    START forums/topics -    --> 
          <ul class="topiclist forums">
            <li class="row">
                <dl class="icon">
                  <dd class="dterm">
                      <div style="display: block;">
                        <h3 class="hierarchy">
                            <a href="---url to forum" class="forumtitle">Your first forum</a>
                        </h3>
                        <br />
                        <img style="float: left;" src="http://2img.net/i/bl/logo.png" /> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
                      </div>
                  </dd>
                </dl> 
            </li>
          </ul>
          <!--    END forums/topics -    --><span class="corners-bottom"><span></span></span> 
      </div>
    </div>
    <!--    END category block -    -->

    and change the second part of the category. (I think) Razz



    Show a Category on Portal Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!