First time into the storefront the srch page would not be found. I fixed this with a hardcoded url. In checkout this causes a mixed http/https waring. I tried copying in the latest suivant theme srch form. There are two entry points into search one for mobile and one for desktop. Withe the new form I get a file not found in the mobile mode and a hung site in the desktop.
I would like to know what else I need to do.
thanks.
new
<form action="&mvte:urls:SRCH:rr;" method="post" class="row mobile-navigation-search">
<input type="search" name="Search" value="&mvte:global:Search;" placeholder="Search…" class="column four-fifths bg-transparent" />
<button type="submit" class="button button-square column one-fifth bg-transparent"><span data-icon="U"></span></button>
</form>
old
<form action="http://www.cvcvcv.com/mm5/merchant.mvc?Screen=SRCH" method="post" class="row mobile-navigation-search">
<input type="hidden" name="Store_Code" value="&mvte:store:code;" />
<input type="search" name="Search" value="&mvte:global:Search;" placeholder="Search…" class="column four-fifths bg-transparent" />
<button type="submit" class="button button-square column one-fifth bg-transparent"><span data-icon="U"></span></button>
</form>
I would like to know what else I need to do.
thanks.
new
<form action="&mvte:urls:SRCH:rr;" method="post" class="row mobile-navigation-search">
<input type="search" name="Search" value="&mvte:global:Search;" placeholder="Search…" class="column four-fifths bg-transparent" />
<button type="submit" class="button button-square column one-fifth bg-transparent"><span data-icon="U"></span></button>
</form>
old
<form action="http://www.cvcvcv.com/mm5/merchant.mvc?Screen=SRCH" method="post" class="row mobile-navigation-search">
<input type="hidden" name="Store_Code" value="&mvte:store:code;" />
<input type="search" name="Search" value="&mvte:global:Search;" placeholder="Search…" class="column four-fifths bg-transparent" />
<button type="submit" class="button button-square column one-fifth bg-transparent"><span data-icon="U"></span></button>
</form>
Comment