forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Miscellaneous => Topic started by: Joppjopp on July 05, 2004, 08:49:53 pm

Title: No user options
Post by: Joppjopp on July 05, 2004, 08:49:53 pm
Hello,

I just installed Coppermine for the first time. It was so easy! Great! Now for another challenge: I just want a very clean gallery for now. I don't want any member features at all: No "login", "last comments" "last viewed" etcetera. Is there any way to do this easily?

Cheers

Jesper
Title: Re: No user options
Post by: Casper on July 05, 2004, 09:49:03 pm
Yes, just edit them out in themes/yourtheme/theme.php

For instance, to remove the login link, find this code;
Code: [Select]
<!-- BEGIN login -->
                        <a href="{LOGIN_TGT}">{LOGIN_LNK}</a>
<!-- END login -->

And change it to this;
Code: [Select]
<!-- BEGIN login -->
                  <!--      <a href="{LOGIN_TGT}">{LOGIN_LNK}</a> -->
<!-- END login -->

Note, DO NOT just remove this code. Coppermine still needs it.  To login yourself, you will have to type your url in the address bar, i.e., ....coppermine/login.php
Title: Re: No user options
Post by: Joppjopp on July 05, 2004, 10:08:47 pm
Thank you! :)

Jesper