coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: reas0n on June 28, 2007, 11:20:31 PM

Title: a Few things
Post by: reas0n on June 28, 2007, 11:20:31 PM
Ok so i have a few issues any help is appreciated

1. I want to remove the My gallery like from the main menu but cant find where to do that

2. i want to remove all the user buttons aside from My Profile but again dont know where to look....i looked around almost all the file but im kinda new to this if someone can point me in the right direction that would be great!

heres a screen shot of what i want to get rid of so you know what im talking about
Title: Re: a Few things
Post by: reas0n on June 29, 2007, 06:38:55 AM
ok so i solved another on my own lol

1. installed final_extract plugin to get rid of the My Gallery Link in Sys_Menu

2. In template.php i just changed this

                <table cellpadding="0" cellspacing="1">

                        <tr>

                                 <td class="admin_menu"><a href="albmgr.php" title="{ALBMGR_TITLE}">{ALBMGR_LNK}</a></td>

                                 <td class="admin_menu"><a href="modifyalb.php" title="{MODIFYALB_TITLE}">{MODIFYALB_LNK}</a></td>

                                <td class="admin_menu"><a href="profile.php?op=edit_profile" title="{MY_PROF_TITLE}">{MY_PROF_LNK}</a></td>

                                <td class="admin_menu"><a href="picmgr.php" title="{PICTURES_TITLE}">{PICTURES_LNK}</a></td>

                        </tr>

                </table>

                </div>


to this :


                <table cellpadding="0" cellspacing="1">

                        <tr>

                                <td class="admin_menu"><a href="profile.php?op=edit_profile" title="{MY_PROF_TITLE}">{MY_PROF_LNK}</a></td>

                        </tr>

                </table>

                </div>