01-19-2009, 11:01 PM
01-20-2009, 12:09 AM
In your "tutorial_bit" template find the following two sections:
and:
Change to:
and:
This will bypass the comments page, too, as they're on the tutorials details page.
Code:
<if condition="$glob[details_page] == 1">
<strong><a style="font-size:11px;font-weight:bold;font:Tahoma;" target="_blank" href="$config[HTTP_SERVER]tutorial_out/$tutorial_bit[id]/$tutorial_bit[tutnamelink]/">$tutorial_bit[tutname]</a></strong><br />
<else />
<strong><a style="font-size:11px;font-weight:bold;font:Tahoma;" target="_blank" href="$config[HTTP_SERVER]tutorial_details/$tutorial_bit[id]/$tutorial_bit[tutnamelink]/">$tutorial_bit[tutname]</a></strong><br />
</if>Code:
<if condition="$glob[details_page] == 1">
<strong><a style="font-size:11px;font-weight:bold;font:Tahoma;" target="_blank" href="$config[HTTP_SERVER]tutorial_out.php?id=$tutorial_bit[id]">$tutorial_bit[tutname]</a></strong><br />
<else />
<strong><a style="font-size:11px;font-weight:bold;font:Tahoma;" target="_blank" href="$config[HTTP_SERVER]tutorial_details.php?tutid=$tutorial_bit[id]&tutname=$tutorial_bit[tutnamelink]">$tutorial_bit[tutname]</a></strong><br />
</if>Change to:
Code:
<strong><a style="font-size:11px;font-weight:bold;font:Tahoma;" target="_blank" href="$config[HTTP_SERVER]tutorial_out/$tutorial_bit[id]/$tutorial_bit[tutnamelink]/">$tutorial_bit[tutname]</a></strong><br />Code:
<strong><a style="font-size:11px;font-weight:bold;font:Tahoma;" target="_blank" href="$config[HTTP_SERVER]tutorial_out.php?id=$tutorial_bit[id]">$tutorial_bit[tutname]</a></strong><br />01-20-2009, 12:17 AM
Worked great very nice thanks! 
