Come rimuovere la barra di ricerca da un tema wordpress?
-
-
Dove sitrova labarra di ricerca?Nellabarra laterale,intestazione,piè dipagina?Qualetema stai usando?Where is the search bar located? In the sidebar, header, footer? Which theme are you using?
- 0
- 2012-12-21
- shea
-
3 risposta
- voti
-
- 2010-10-07
Seil campo di ricerca èimplementato come widget,èpossibilefarlotramite l'interfaccia di amministrazione.Basta andare su Aspetto> Widgete trascinareil widget di ricerca dall'area del widget al riquadro "Widget disponibili".
Seil campo di ricerca è hardcodedneltema,potrebbeesserepiù semplicemodificareil CSSpiuttosto che l'HTMLe il PHP.Ecco comefare:
- Utilizza Firebug o uno strumento simileperindividuare l'elemento DIV contenenteil codice di ricerca.
- Nelfile CSS deltema (probabilmente style.css),aggiungi
display: none
a quel DIV.Questo ètutto!
Questo è un approcciominimamenteinvasivo.Se desideri riattivare labarra di ricerca,rimuovi l'istruzione
display: none
daltuo CSS.If the search field is implemented as a widget, this can be done via the administration interface. Just navigate to Appearance > Widgets and drag the search widget from the widget area to the "Available Widgets" pane.
If the search field is hard-coded into the theme, it might be easier to edit the CSS rather than the HTML and PHP. Here's how:
- Use Firebug or a similar tool to locate the DIV element containing the search code.
- In the theme's CSS file (probably style.css), add
display: none
to that DIV. That's it!
This is a minimally invasive approach. If you ever want to re-enable the search bar, just remove the
display: none
statement from your CSS.-
Grazie,sarà un'ottimaidea.Loimplementerò solo.Thanks, it will be great idea. I am just going to implement it.
- 0
- 2010-10-10
- Himanshu Vyas
-
@kylan +1per l'idea CSS.Ciò èparticolarmente utileperi temifiglio composti da un solofile: `style.css`.@kylan +1 for the CSS idea. This is especially great for child themes which are made of one file only: `style.css`.
- 0
- 2012-02-01
- ef2011
-
- 2010-10-07
-
Prova aindividuareil codice HTML che rappresenta labarra di ricerca.
-
Quinditrovain qualifile deltema risiede (puòessere definitoin piùfile: single.php,page.php,..)
-
Rimuoviilmarkupinclusa la chiamataphp datuttii file.
Try to locate the HTML representing the search bar.
Then find in which theme files it resides (it may be defined in multiple files - single.php, page.php,..)
Remove the markup including the php call from all the files.
-
- 2013-02-17
Puoitrovarloin header.phpe cancellarlo o utilizzare l'attributo CSS "display:none" .Ilmetodo get_search_form () rappresenta labarra di ricerca.
<?php // Has the text been hidden? if ( 'blank' == get_header_textcolor() ) : ?> <div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>"> <?php get_search_form(); ?> </div> <?php else : ?> <?php get_search_form(); ?> <?php endif; ?>
You can find it at header.php and just delete it or use CSS attribute "display:none". get_search_form() method represents Search Bar.
<?php // Has the text been hidden? if ( 'blank' == get_header_textcolor() ) : ?> <div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>"> <?php get_search_form(); ?> </div> <?php else : ?> <?php get_search_form(); ?> <?php endif; ?>
Come rimuovere labarra di ricerca da untema wordpress?