Dolphin 6.1.4 - How can I remove the top menu (links etc.) together with the Join - Member and panel section?
I just want the home menu and .swf promo banner.
Thanks in advance,
Stuart
Dolphin 6.1.4 - How can I remove the top menu (links etc.) together with the Join - Member and panel section? I just want the home menu and .swf promo banner. Thanks in advance, Stuart There are none so blind as those that will not see. |
you need just to remove in /templates/tmpl_uni/_header.html <div class="topestMenu"> Regards Artur |
Many thanks Artur, Can you tell me how I can remove the Join Member from that block? Stuart There are none so blind as those that will not see. |
you need to edit templates/tmpl_uni/functions.php function HelloMemberSection() just remove <a href="<?= $site['url'] ?>join.php"><?= _t( '_Join Now Top' ) ?></a> Regards Artur |
. Well, the file is actually located in templates/tmpl_uni/scripts. And if you want to remove both functions completely, the join now and also the login text that appears on the upper right of the homepage, then just delete this entire div here, same file same section, as mentioned by ArturA. First rename the original file to something like old_functions.php just to be safe. . ?> <div class="no_hello_actions"> </div> . . Greetings from Germany |
Many thanks for that! . Well, the file is actually located in templates/tmpl_uni/scripts. And if you want to remove both functions completely, the join now and also the login text that appears on the upper right of the homepage, then just delete this entire div here, same file same section, as mentioned by ArturA. First rename the original file to something like old_functions.php just to be safe. . ?> <div class="no_hello_actions"> </div> . . Greetings from Germany There are none so blind as those that will not see. |