Hi guys,
merry christmas...
I need to add the jigoshop search widget to the head area of my page. I added a few other things by using various hooks such as "pagelines_before_branding", and modifying the functions.php file etc..
Now I can get the default wordpress widget to appear by using get_search_form(); since the default wordpress widget starts as a function... The jigoshop widget starts as a class:
class Jigoshop_Widget_Product_Search
How would I call this within my themes function.php file?
I tried doing this: <?php Jigoshop_Widget_Product_Search::widget(); ?> but
I get an error asking for 2 arguments $args, $instance which appear in the jigoshop widgets code like so "public function widget( $args, $instance )"
What do I put for these 2 variables?
The reason why I'd like to use the jigoshop widget is that it will search only for products... Or is there a quick way to modify the wordpress search widget to do the same?











