How to delete the search form on header Dolphin7.1

How to delete the search form next to logo header "template" of Dolphin 7.1?

I tried the following code but I can not:

<bx_include_auto:_header.html />

 

    <bx_injection:banner_left />

    <bx_injection:banner_right />

    __extra_top_menu__

    <div class="sys_main_logo" style="min-width:__main_div_width__;">

<div class="sys_ml" style="width:__main_div_width__;">

            <div class="sys_ml_wrapper bx-def-padding-sec">

                <bx_injection:injection_logo_before />

    __main_logo__

    <bx_injection:injection_logo_after />

            </div>

</div>

<bx_injection:banner_top />

</div>

<bx_injection:injection_between_logo_top_menu />

    __top_menu__

    <bx_injection:injection_between_top_menu_content />

Quote · 11 Nov 2012

Thank you for posting this.  I just assumed that was going to be somewhere in the admin, as it totally screwed up the appearance of my  site as well .  I am a little surprised we have to modify code just to get rid of it.  

Quote · 11 Nov 2012

 This is what Hustonlively recomended, it works great

Does anyone know how to completely remove this search feature (box) on left top of page from the site or if not at least from my index page on 7.1.0?

The solution below works well with 7.0.9 but I canot get it to work with 7.1.0

http://www.boonex.com/m/remove-search-from-top-menu-2011-08-30

The easiest way is to add this code to your template's general.css

#sys_search_wrapper {
display: none;
}
Quote · 11 Nov 2012

I just found the "disable full text search" in advanced settings, and thought that would do it - but it doesn't.  What does that do?

Quote · 11 Nov 2012

Just Add visibility:hidden 

 
to
 
div#sys_search {
    position: absolute;
    top: 7px;
    left: 0px;
    background-color:#fff;   
    visibility:hidden 
}
 
in templates base css general.css
 

How to delete the search form next to logo header "template" of Dolphin 7.1?

I tried the following code but I can not:

<bx_include_auto:_header.html />

 

    <bx_injection:banner_left />

    <bx_injection:banner_right />

    __extra_top_menu__

    <div class="sys_main_logo" style="min-width:__main_div_width__;">

<div class="sys_ml" style="width:__main_div_width__;">

            <div class="sys_ml_wrapper bx-def-padding-sec">

                <bx_injection:injection_logo_before />

    __main_logo__

    <bx_injection:injection_logo_after />

            </div>

</div>

<bx_injection:banner_top />

</div>

<bx_injection:injection_between_logo_top_menu />

    __top_menu__

    <bx_injection:injection_between_top_menu_content />

 

Quote · 11 Nov 2012

 Thank you, I added the following line below on general.css and the search form is now gone.

div#sys_search {

    position: absolute;

    top: 7px;

    left: 0px;

    background-color:#fff;   

    visibility:hidden 

}

Just Add visibility:hidden 

 
to
 
div#sys_search {
    position: absolute;
    top: 7px;
    left: 0px;
    background-color:#fff;   
    visibility:hidden 
}
 
in templates base css general.css
 

How to delete the search form next to logo header "template" of Dolphin 7.1?

I tried the following code but I can not:

<bx_include_auto:_header.html />

 

    <bx_injection:banner_left />

    <bx_injection:banner_right />

    __extra_top_menu__

    <div class="sys_main_logo" style="min-width:__main_div_width__;">

<div class="sys_ml" style="width:__main_div_width__;">

            <div class="sys_ml_wrapper bx-def-padding-sec">

                <bx_injection:injection_logo_before />

    __main_logo__

    <bx_injection:injection_logo_after />

            </div>

</div>

<bx_injection:banner_top />

</div>

<bx_injection:injection_between_logo_top_menu />

    __top_menu__

    <bx_injection:injection_between_top_menu_content />

 

 

Quote · 12 Nov 2012

 Hello, CALTRADE

Just add this code below the general.css : 

div#sys_search {

    position: absolute;

    top: 7px;

    left: 0px;

    background-color:#fff;   

    visibility:hidden 

}

 

 And then in the admin panel click should clean all cache

 

I just found the "disable full text search" in advanced settings, and thought that would do it - but it doesn't.  What does that do?

 

Quote · 13 Nov 2012

This doesn't seem to work in 7.1.3.
Any other suggestions?

Bill and Deb
Quote · 24 Jun 2013

find id sys_search_wrapper


add display:none;

visibility:hidden does not remove the space used by the wrapper, display:none removes the space that is used by the wrapper.

Geeks, making the world a better place
Quote · 24 Jun 2013

The search form is displayed on the page using the "injection_logo_before" injection. If you want to completely remove it from being loaded, delete it from the sys_injections table.

 

Remember, always make a backup before making changesSmile

Dedicated servers for as little as $32 (28 euro) - See http://denre.com for more information
Quote · 25 Jun 2013

In dolphin 7.1.0-current version

That search form is an injection.

Just run this SQL from in phpMyAdmin

DELETE FROM `sys_injections` WHERE `name` = 'site_search'

Then clear the dolphin cache. <<<<<< This is important. Skip it and it will not work.

That removes the injection and the search form is gone. No need to make any dolphin code changes.

https://www.deanbassett.com
Quote · 25 Jun 2013

There you go, one way is to hide it, the other is to remove it.

Geeks, making the world a better place
Quote · 25 Jun 2013

in 7.1.3 I don't find site_search entry in sys_injections table.

Any other suggestions?

Bill and Deb
Quote · 5 Jul 2013

 

in 7.1.3 I don't find site_search entry in sys_injections table.

Any other suggestions?

Sorry. But that's impossible.

If the site search is in the header of the site. Then it has to be there.

Make sure your looking in sys_injections and not sys_injections_admin



7-5-2013 3-32-03 PM.png · 113.2K · 998 views
https://www.deanbassett.com
Quote · 5 Jul 2013

That is the correct table, I just checked and it is listed.  If you don't see it, then it must have been removed.

Geeks, making the world a better place
Quote · 5 Jul 2013

If it has been removed then it should not be appearing in the header of the site unless one of the follow two is true.

1) When it was removed, the cache was not cleared.

2) Running a custom template where a search is built in as part of the template.
 
Those are the only other two explanations i can think of. In case of #2 then contact the template developer.



https://www.deanbassett.com
Quote · 5 Jul 2013

I apologize, There was an html page in the template specifically for the search. Thank you Deano!

Bill and Deb
Quote · 5 Jul 2013

I have a similar concern. I want only members to be able to do full text. How do I do this?

Quote · 10 Jul 2013

Anything you like to add remove or hidden firebug can help you.

"Your future is created by what you do today, not tomorrow." @ www.dexpertz.net
Quote · 10 Jul 2013

Expertzkris, I can make it hidden by css...but the question is how to make it only viewable by members

any advice? it may have to do with php, which firebug cant help with

 

 

Quote · 10 Jul 2013

correct code here copy and paste

 

<bx_include_auto:_header.html />

<div class="sys_root_bg"></div>

<div class="sys_root">

    <bx_injection:banner_left />

    <bx_injection:banner_right />

    __extra_top_menu__

    <div class="sys_main_logo">

<div class="sys_ml sys_main_page_width">

            <div class="sys_ml_wrapper bx-def-margin-sec-leftright bx-def-padding-sec-topbottom">

                <div class="sys_ml_wrapper bx-def-padding-sec">

    __main_logo__

 

    <bx_injection:injection_logo_after />

 

            </div>

               

             

               </td>

               <td class="sys_menu_wrapper">__service_menu__</td>

   </tr>

   </table>

   <bx_injection:injection_logo_after />

            </div>

</div>

<bx_injection:banner_top />

</div>

<bx_injection:injection_between_logo_top_menu />

    __top_menu__

    <bx_injection:injection_between_top_menu_content />

<!-- end of top -->

 

<div class="sys_main_content sys_main_page_width">

        <div class="sys_mc_wrapper bx-def-margin-sec-leftright">

            <div class="sys_mc clearfix">

                <!--[if lt IE 8]>

                <div style="background-color:#fcc" class="bx-def-border bx-def-margin-top bx-def-padding bx-def-font-large">

                    <b>You are using a subprime browser.</b> <br />

                    It may render this site incorrectly. <br />

                    Please upgrade to a modern web browser: 

                    <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> | 

                    <a href="http://www.firefox.com" target="_blank">Firefox</a> | 

                    <a href="http://www.apple.com/safari/download/" target="_blank">Safari</a>

                </div>

                <![endif]-->

 

                <!-- body -->

                <bx_injection:injection_splash_before />

                __main_splash__

                <bx_injection:injection_content_before />

dincer al
Quote · 30 Jan 2017
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.