¿Cómo eliminar la barra de búsqueda de un tema de wordpress?
-
-
¿Dónde seencuentra labarra debúsqueda?¿En labarra lateral,encabezado,pie depágina?¿Quétemaestá usando?Where is the search bar located? In the sidebar, header, footer? Which theme are you using?
- 0
- 2012-12-21
- shea
-
3 respuestas
- votos
-
- 2010-10-07
Siel campo debúsqueda seimplementa como un widget,esto sepuede hacer através de lainterfaz de administración.Simplementenavegue hasta Apariencia> Widgets y arrastreel widget debúsqueda desdeel área de widgets alpanel "Widgets disponibles".
Siel campo debúsquedaestá codificadoen eltema,podría sermásfácileditarel CSS queel HTML y PHP.He aquí cómo:
- Utilice Firebug o una herramienta similarpara localizarelelemento DIV que contieneel código debúsqueda.
- Enel archivo CSS deltema (probablemente style.css),agregue
display: none
aese DIV.¡Esoestodo!
Estees unenfoquemínimamenteinvasivo.Si alguna vez desea volver a habilitar labarra debúsqueda,simplementeelimine la declaración
display: none
de su 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.-
Gracias,será unagranidea.Solo lo voy aimplementar.Thanks, it will be great idea. I am just going to implement it.
- 0
- 2010-10-10
- Himanshu Vyas
-
@kylan +1para laidea de CSS.Estoesespecialmentebuenoparatemas secundarios queestán hechos de un solo archivo: `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
-
Intente localizarel HTML que representa labarra debúsqueda.
-
Luego,busqueen qué archivos detema reside (sepuede definiren varios archivos: single.php,page.php,..)
-
Elimineelmarcado,incluida la llamadaphp,detodos los archivos.
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
Puedeencontrarloen header.php y simplementeeliminarlo o usarel atributo CSS "display:none" .Elmétodo get_search_form () representa labarra debúsqueda.
<?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; ?>
¿Cómoeliminar labarra debúsqueda de untema de wordpress?