We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

How to Remove the Login and Sign Up | Forum

Kelvin {the GodFada}

Please kindly help me on how i can remove this Login and Sign Up at the right top conner of my site.
I attached the screenshot of it to enable you understand what am talking about.

i Circle it with RED
Purusothaman Ramanujam
In the file ow_system_plugins\base\classes\console_event_handler.php

comment the highlighted lines

            $item = new BASE_CMP_ConsoleItem();
            $item->setControl('<span class="ow_signin_label'.(empty($buttonList) ? '' : ' ow_signin_delimiter').'">' . $language->text('base', 'sign_in_submit_label') . '</span>' . $iconListMarkup);
            $event->addItem($item, 2);

            OW::getEventManager()->bind('base.add_page_top_content', array($this, 'addSignInCmp'));
            OW::getDocument()->addOnloadScript("
                $('#".$item->getUniqId()."').click(function(){new OW_FloatBox({ \$contents: $('#base_cmp_floatbox_ajax_signin')});});
            ");

            $item = new BASE_CMP_ConsoleButton($language->text('base', 'console_item_sign_up_label'), OW::getRouter()->urlForRoute('base_join'));
           $event->addItem($item, 1);
Alia Team
Alia Sep 16 '13
Topic was moved from General Questions.
Kelvin {the GodFada}
Do you mean i should remove those bold Highlighted ones and save the file?
Purusothaman Ramanujam
comment..

I mean add \\ at the beginning of these 2 lines
Kelvin {the GodFada}
Ok, thanks brother