Page 1 of 1

phpBB how to make index in posts

Posted: Wed Mar 10, 2010 1:27 pm
by Neo
To do this, you will have to add 2 BBCodes to your forum through ACP.

Anchor
BBCode:

Code: Select all

[anchor]{TEXT}[/anchor]
HTML:

Code: Select all

<a name="{TEXT}"></a>
Helpline:

Code: Select all

Anchor: [anchor]Name of the anchor[/anchor]
Goto
BBCode:

Code: Select all

[goto={TEXT1}]{TEXT2}[/goto]
HTML:

Code: Select all

<a href="#{TEXT1}">{TEXT2}</a>
Helpline:

Code: Select all

Goto: [goto=Anchor Name]Link text[/goto]
Usage
Put anchors in the places you want as follows.

Code: Select all

[anchor]tag1[/anchor]
Now, to jump to tag1, use following code.

Code: Select all

[goto=tag1]Description here[/goto]