I am using Aphrodite as my default template. When I tried to install the MOD at the begining of this thread, I had to try to improvise where this should go:
Code:OPEN index_body.tpl
FIND
<a href="{catrow.forumrow.U_VIEWFORUM}
After, ADD
{catrow.forumrow.FORUM_URL_KEYWORDS}
The closest thing in aphrodite's index_body.tpl is this:
Code:<td class="row1h{catrow.forumrow.XS_NEW} row-forum" width="70%" onclick="window.location.href='{catrow.forumrow.U_VIEWFORUM}'"><a class="forumlink{catrow.forumrow.XS_NEW}" href="{catrow.forumrow.U_VIEWFORUM}">
{catrow.forumrow.FORUM_NAME}</a> <br />
So I put it here:
Code:<td class="row1h{catrow.forumrow.XS_NEW} row-forum" width="70%" onclick="window.location.href='{catrow.forumrow.U_VIEWFORUM}'"><a class="forumlink{catrow.forumrow.XS_NEW}" href="{catrow.forumrow.U_VIEWFORUM}">
{catrow.forumrow.FORUM_URL_KEYWORDS}
{catrow.forumrow.FORUM_NAME}</a> <br />
But I ended up not with keyword string file names added to urls, but with keyword string file names
added to the forum's title i.e.-Travel Forum travel-forum.html.
The urls did change, but not to include keywords. They were like this:
....mydomain.com/forum/post1993.html#445684
Any idea how I might impement this with the aphrodite template?