You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
2.0 KiB
37 lines
2.0 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="classic_store_search" inherit_id="website.snippets" name="Search">
|
|
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]"
|
|
position="inside">
|
|
<t t-snippet="theme_classic_store.s_classic_store_search"
|
|
t-thumbnail="/theme_classic_store/static/src/images/snippets/search_bar_block.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="s_classic_store_search" name="Search">
|
|
<section class="search">
|
|
<div class="container">
|
|
<div class="wrapper">
|
|
<div class="oe_structure" />
|
|
<div class="row ">
|
|
<div class="col">
|
|
<div class="form-group col">
|
|
<form method="get" data-snippet="s_products_searchbar_input" class="o_wsale_products_searchbar_form s_wsale_products_searchbar_input" action="/shop">
|
|
<div role="search" class="input-group">
|
|
<input type="search" name="search" class="search-query form-control oe_search_box" data-limit="5" data-display-description="true" data-display-price="true" data-display-image="true" placeholder="Search..." autocomplete="off"/>
|
|
</div>
|
|
<input name="order" type="hidden" class="o_wsale_search_order_by" value=""/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-2 col-12">
|
|
<button type="submit" class="btn btn-primary oe_search_button" aria-label="Search" title="Search">
|
|
<a style="color: #fff;">Search Now</a>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|