Hi zoidts
You can try in this way
Edit this file /templates/ja_megastore/html/com_virtuemart/category/default.php and change as follows
<!--BEGIN Search Box -->
<div class="virtuemart_search">
<!-- <?php echo $this->searchCustomList ?> -->
<?php if(!empty($this->searchCustomList)) { ?>
<div>
<?php echo $this->searchCustomList ?>
</div>
<?php } ?>
<br/>
<!-- <?php echo $this->searchCustomValues ?> -->
<?php if(!empty($this->searchCustomValues)) { ?>
<div>
<?php
echo ShopFunctionsF::renderVmSubLayoutAsGrid(
'searchcustomvalues',
array (
'searchcustomvalues' => $this->searchCustomValues,
'options' => array (
'items_per_row' => array (
'xs' => 2,
'sm' => 2,
'md' => 2,
'lg' => 2,
'xl' => 2,
),
),
)
);
?>
</div>
<?php } ?>
Let us know if this helps