saguaros Thanks for the speed of your reply. Which lines of code do I need to replace with the code below?
<!--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 } ?>
Do I replace the section below?
<!--BEGIN Search Box -->
<div class="virtuemart_search">
<?php echo $this->searchCustomList ?>
<br/>
<?php echo $this->searchCustomValues ?>
<input name="keyword" class="inputbox" type="text" size="20" value="<?php echo $this->keyword ?>"/>
<input type="submit" value="<?php echo vmText::_ ('COM_VIRTUEMART_SEARCH') ?>" class="button" onclick="this.form.keyword.focus();"/>
</div>
<input type="hidden" name="search" value="true"/>
<input type="hidden" name="view" value="category"/>
<input type="hidden" name="option" value="com_virtuemart"/>
<input type="hidden" name="virtuemart_category_id" value="<?php echo $category_id; ?>"/>
</form>
<!-- End Search Box -->