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.
The forum of the forums
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 December 25th 2015, 10:16 am

    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 December 26th 2015, 9:39 pm

    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 December 27th 2015, 9:56 pm

    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 December 29th 2015, 1:50 am

    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 January 2nd 2016, 4:35 am

    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 January 3rd 2016, 10:29 am

    Bump
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    In progress Re: Show a Category on Portal

    Post by 10spetter10 January 3rd 2016, 4:37 pm

    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 : 51499
    Reputation : 3523
    Language : English
    Location : United States

    In progress Re: Show a Category on Portal

    Post by SLGray January 3rd 2016, 4:50 pm

    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 January 3rd 2016, 4:56 pm

    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 : 51499
    Reputation : 3523
    Language : English
    Location : United States

    In progress Re: Show a Category on Portal

    Post by SLGray January 3rd 2016, 4:58 pm

    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 January 3rd 2016, 5:07 pm

    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 January 4th 2016, 1:02 am

    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 January 4th 2016, 2:39 am

    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 January 4th 2016, 3:00 am

    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 January 6th 2016, 2:02 pm

    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 January 6th 2016, 2:41 pm

    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 January 6th 2016, 3:37 pm

    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 January 7th 2016, 3:37 pm

    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 January 9th 2016, 6:21 am

    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 January 10th 2016, 6:40 am

    Bump.
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    In progress Re: Show a Category on Portal

    Post by 10spetter10 January 10th 2016, 9:35 am

    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 January 10th 2016, 9:40 am

    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 January 10th 2016, 1:58 pm

    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 January 11th 2016, 12:24 pm

    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 January 12th 2016, 2:01 pm

    Bump.
    TheCrow
    TheCrow
    Manager
    Manager


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

    In progress Re: Show a Category on Portal

    Post by TheCrow January 12th 2016, 2:06 pm

    @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 January 12th 2016, 2:06 pm

    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 January 12th 2016, 2:07 pm

    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 January 12th 2016, 2:12 pm

    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 January 12th 2016, 2:19 pm

    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!

      Current date/time is September 23rd 2024, 8:31 am