phpBB how to make index in posts
Posted: Wed Mar 10, 2010 1:27 pm
To do this, you will have to add 2 BBCodes to your forum through ACP.
Anchor
BBCode:
HTML:
Helpline:
Goto
BBCode:
HTML:
Helpline:
Usage
Put anchors in the places you want as follows.
Now, to jump to tag1, use following code.
Anchor
BBCode:
Code: Select all
[anchor]{TEXT}[/anchor]
Code: Select all
<a name="{TEXT}"></a>
Code: Select all
Anchor: [anchor]Name of the anchor[/anchor]
BBCode:
Code: Select all
[goto={TEXT1}]{TEXT2}[/goto]
Code: Select all
<a href="#{TEXT1}">{TEXT2}</a>
Code: Select all
Goto: [goto=Anchor Name]Link text[/goto]
Put anchors in the places you want as follows.
Code: Select all
[anchor]tag1[/anchor]
Code: Select all
[goto=tag1]Description here[/goto]