How do I replace the LOGIN link in the MAIN MENU? How do I replace the LOGIN link in the MAIN MENU?
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

How do I replace the LOGIN link in the MAIN MENU?

Started by djelyte, March 14, 2005, 07:21:29 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

djelyte

I would like to replace the option to login with my own link like they have done on this site:

http://funkthisentertainment.com/gallery/index.php?cat=5 [edit GauGau]Warning, mild nudity. Link is not worksafe[/edit]

Thanks for the help

Joachim Müller

I wasn't able to find the login link on the page you were refering to, but as a generic advice, edit themes/yourtheme/theme.php, find<!-- BEGIN login -->
                        <a href="{LOGIN_TGT}">{LOGIN_LNK}</a>
<!-- END login -->
and replace with<!-- BEGIN login -->
                        <a href="your_login_link.htm">your login text</a>
<!-- END login -->
Leave the stuff between <!-- and --> as-is, it is needed.

Joachim