Skip Navigation

[Resuelto] render search view in a template – but only search from, without results

This support ticket is created hace 5 años, 11 meses. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Hoy no hay técnicos de soporte disponibles en el foro Juego de herramientas. Siéntase libre de enviar sus tiques y les daremos trámite tan pronto como estemos disponibles en línea. Gracias por su comprensión.

Este tema contiene 1 respuesta, tiene 1 mensaje.

Última actualización por Ido Angel hace 5 años, 11 meses.

Autor
Mensajes
#1172222

hey,

i placed this code:

			<?php 
			$args = array(
    'title' => 'Search',
);
echo render_view( $args );
			 ?>

in my header template file - but i get both form and results. how do i place only the search form and point it to a different results page?

thanks!

#1172224

that was quick! found it myself:

<?php 
$args = array(
'title' => 'Search',
'target_id' => '500'
);
echo render_view( $args );
?>