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.

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

5 posters

Go down

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
Whole India
Whole India
New Member

Posts : 18
Reputation : 1
Language : English

https://ns-india.forumotion.com/

Back to top Go down

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
skouliki
skouliki
Manager
Manager

Female Posts : 15133
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

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.
Whole India
Whole India
New Member

Posts : 18
Reputation : 1
Language : English

https://ns-india.forumotion.com/

Back to top Go down

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
skouliki
skouliki
Manager
Manager

Female Posts : 15133
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

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
Ape
Ape
Administrator
Administrator

Male Posts : 19122
Reputation : 1993
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

TonnyKamper likes this post

Back to top Go down

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.
Whole India
Whole India
New Member

Posts : 18
Reputation : 1
Language : English

https://ns-india.forumotion.com/

Back to top Go down

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
TonnyKamper
TonnyKamper
Active Poster

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

http://www.nederlandheelt.nl/forum

Back to top Go down

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.
Whole India
Whole India
New Member

Posts : 18
Reputation : 1
Language : English

https://ns-india.forumotion.com/

Back to top Go down

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.
TheCrow
TheCrow
Manager
Manager

Male Posts : 6913
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

TonnyKamper and Whole India like this post

Back to top Go down

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.
Whole India
Whole India
New Member

Posts : 18
Reputation : 1
Language : English

https://ns-india.forumotion.com/

Back to top Go down

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 : 15133
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

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
skouliki
skouliki
Manager
Manager

Female Posts : 15133
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum