Quote:
Originally Posted by Sleeter
The only problem I still have is the links from the thread title in the slideshow to the thread it came from. I want to remove that link completely since members will not be able to see the private forum. Any idea how to accomplish that?
|
Thanks for the compliment and I am sorry you had to spend a day messing around :-)
OK, so for the link:
In the slider.php find this line:
PHP Code:
$centerhtml .="<h2><a href='".$link."'>".$titleContent."</a></h2>";
The key is the $link - you can do one or the other:
Change the line to:
PHP Code:
$centerhtml .="<h2>".$titleContent."</h2>";
To drop the link reference
or change the line to:
PHP Code:
$centerhtml .="<h2><a href='http://yourlink.com'>".$titleContent."</a></h2>";
To insert your own link to send the user