Users unsure how to register or missed the buttons at top left Users unsure how to register or missed the buttons at top left
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Users unsure how to register or missed the buttons at top left

Started by waynepyrah, April 12, 2005, 01:49:17 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

waynepyrah

Hi I'm having a problem with my site http://cgi.pyrah.com/coppermine in that some users are unsure that they have to register and some are saying they missed the login/register buttons.  Is there anything really simple I can do to assist them by say making the buttons bigger, saying you aren't logged in more photos available once logged in and stuff like that ??

Cheers, Wayne

Nibbler

You could replace your anycontent.php with this:

<?php

if (!USER_ID){
starttable("100%""Welcome");
echo <<< EOT
<tr>
<td class="tableb" >
To see all the pictures available, please <a href="login.php">Login</a> or <a href="register.php">Register</a>.
</td>
</tr>
EOT;

endtable();
}
?>


and then enable it by adding anytcontent/ to the start your 'contents of the main page' setting in config.

waynepyrah

Hi thanks just tried that and got this "Parse error: parse error, unexpected $ in /files/home3/willandwayne/coppermine/anycontent.php on line 13"

Nibbler

EOT;endtable(); are supposed to be on 2 lines, so

EOT;
endtable();