In the Storefront Template we have two search modules. One at the top of the page and one under the category tree in category-view. I can't really create usefull search-results so I asked in VM forum and they answer the following:
the one at category-view has its action url as
<form method="get" action="/onlineshop/miriam-eva-kebe-living/search">... why?
the top one
<form method="get" action="/onlineshop/alle-produkte/search">
...
there is no setting in Joomla to change it... look in the template of the search module to try and figure why it takes this url
it is normally something like
<!--BEGIN Search Box -->
<form action="<?php echo JRoute::_('index.php?option=com_virtuemart&view=category&search=true&limitstart=0&virtuemart_category_id='.$category_id ); ?>" method="get">
Is it possible to fix the search to the categroy "alle-produkte (/onlineshop/alle-produkte/) so it always searches all my products?