Not able to make a table of content with link in it. 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.
5 posters

    Not able to make a table of content with link in it.

    Whole India
    Whole India
    New Member


    Posts : 18
    Reputation : 1
    Language : English

    Solved Not able to make a table of content with link in it.

    Post by Whole India January 3rd 2021, 12:02 pm

    Technical Details


    Forum version : #ModernBB
    Position : Founder
    Concerned browser(s) : Google Chrome
    Who the problem concerns : All members
    When the problem appeared : When I was building the forum.
    Forum link : https://ns-india.forumotion.com

    Description of problem

    Hello! I wanted to make a table of content for one of my posts in which the table of content's serial wordings would be linked to a specific section, but I can't find anywhere how to do it. Please help!


    Last edited by Whole India on January 20th 2021, 5:33 pm; edited 1 time in total
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15312
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Solved Re: Not able to make a table of content with link in it.

    Post by skouliki January 3rd 2021, 12:28 pm

    hello

    you can use this button

    Not able to make a table of content with link in it. Scre2304

    if you mean something different please post a screenshot of the result you want to succeed

    Whole India
    Whole India
    New Member


    Posts : 18
    Reputation : 1
    Language : English

    Solved Re: Not able to make a table of content with link in it.

    Post by Whole India January 3rd 2021, 5:19 pm

    skouliki wrote:hello

    you can use this button

    Not able to make a table of content with link in it. Scre2304

    if you mean something different please post a screenshot of the result you want to succeed

    I tried it, but it wasn't satisfying. I want something like this.

    Not able to make a table of content with link in it. WP_Table_of_contents

    Like these links in the table of content will on clicking send me to a section of the same page.
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15312
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Solved Re: Not able to make a table of content with link in it.

    Post by skouliki January 3rd 2021, 6:36 pm

    you can use the list button or the ordered list and add the urls you want

    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19325
    Reputation : 2005
    Language : fluent in dork / mumbojumbo & English haha

    Solved Re: Not able to make a table of content with link in it.

    Post by Ape January 3rd 2021, 10:59 pm

    You mean something like this ?


    Code:
    [table border="1"]
    [tr style=][td][list][*][url=https://help.forumotion.com/post]Test 1  [/url]
    [*][url=https://help.forumotion.com/post]Test 2  [/url]
    [*][url=https://help.forumotion.com/post]Test 3  [/url]
    [*][url=https://help.forumotion.com/post]Test 4  [/url]
    [*][url=https://help.forumotion.com/post]Test 5  [/url] 
    [/list]
    [/td]
    [/tr]
    [/table]

    The URL is the link part
    The Test 1 to 5 is the Words
    The [*] is the dot's before the words
    Just copy this to add more and change the test word to what you want
    Code:
    [*][url=https://help.forumotion.com/post]Test 1  [/url]

    If yes then you need a code like this



    Not able to make a table of content with link in it. Left1212Not able to make a table of content with link in it. Center11Not able to make a table of content with link in it. Right112
    Not able to make a table of content with link in it. Ape_b110
    Not able to make a table of content with link in it. Ape1010

    TonnyKamper likes this post

    Whole India
    Whole India
    New Member


    Posts : 18
    Reputation : 1
    Language : English

    Solved Re: Not able to make a table of content with link in it.

    Post by Whole India January 9th 2021, 2:30 pm

    No, I am asking to linking a section of the post and not another post.
    TonnyKamper
    TonnyKamper
    Active Poster


    Female Posts : 1080
    Reputation : 78
    Language : Dutch/English
    Location : DSF Admin

    Solved Re: Not able to make a table of content with link in it.

    Post by TonnyKamper January 9th 2021, 6:00 pm

    I think you need to make anchor links..
    See this post, it explains it a bit.. https://help.forumotion.com/t33347-html-anchor-tag-problems?highlight=anchor
    Whole India
    Whole India
    New Member


    Posts : 18
    Reputation : 1
    Language : English

    Solved Re: Not able to make a table of content with link in it.

    Post by Whole India January 15th 2021, 8:24 am

    I want in BBcode and not in Html.
    TheCrow
    TheCrow
    Manager
    Manager


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

    Solved Re: Not able to make a table of content with link in it.

    Post by TheCrow January 15th 2021, 9:38 am

    Hello @Whole India

    What you are trying to do is add a navigation for your post. Something like what we have in our tips and tricks section.

    That's easy to do.
    The only thing you have to do is add a different id name for each table of your post and then add those links in your navigation.
    Example:
    Navigation in post:
    Part 1 Section
    Part 2 Section

    This will be part one
    Test BoxAnother Test

    This will be part two
    Test BoxAnother Test

    Here's what I used so you understand:
    Code:
    [b][u]Navigation in post:[/u][/b]
    [url=https://help.forumotion.com/t159910-not-able-to-make-a-table-of-content-with-link-in-it#part1]Part 1 Section[/url]
    [url=https://help.forumotion.com/t159910-not-able-to-make-a-table-of-content-with-link-in-it#part2]Part 2 Section[/url]

    [table cellspacing="0" border="1" id="part1"][tr style="padding-top:20px"][td]This will be part one[/td][/tr][tr][td]Test Box[/td][td]Another Test[/td][/tr][/table]

    [table cellspacing="0" border="1" id="part2"][tr][td]This will be part two[/td][/tr][tr][td]Test Box[/td][td]Another Test[/td][/tr][/table]

    As you can see, once you make your tables with different
    Code:
    id=""
    in them, all you have to do is add the topic link with that hashtag. For example, above i used
    Code:
    id="part1"
    and the topic link is https://help.forumotion.com/t159910-not-able-to-make-a-table-of-content-with-link-in-it so all i have to do is add the
    Code:
    #part1
    at the end of the link https://help.forumotion.com/t159910-not-able-to-make-a-table-of-content-with-link-in-it#part1 to take me to that area of the post.


    Regards,
    TC.



    Not able to make a table of content with link in it. 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!

    TonnyKamper and Whole India like this post

    Whole India
    Whole India
    New Member


    Posts : 18
    Reputation : 1
    Language : English

    Solved Re: Not able to make a table of content with link in it.

    Post by Whole India January 19th 2021, 7:36 am

    Thank you.
    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15312
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Solved Re: Not able to make a table of content with link in it.

    Post by skouliki January 19th 2021, 7:46 am

    When your request is complete, please mark it as Solved.

    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15312
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    Solved Re: Not able to make a table of content with link in it.

    Post by skouliki January 20th 2021, 8:02 pm

    Problem solved & topic archived.
    Please read our forum rules: ESF General Rules