a Few things a Few things
 

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

a Few things

Started by reas0n, June 28, 2007, 11:20:31 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

reas0n

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

reas0n

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>