<div>
<a class="view-all" href="@Url.RouteUrl("ManufacturerList")" title="@T("SevenSpikes.MegaMenu.ViewAllManufacturers")">@T("SevenSpikes.MegaMenu.ViewAllManufacturers")</a>
</div>
Hi,
In the code will be really difficult to hide the price or/and the add to cart button. But, you can easily do that via CSS. Just add this code in your theme Custom Head Styles setting:
.instant-search-item .detail .price,
.search-page .item-box .add-info {
display: none;
}
Hi,
As I said, the browser will require permission (a popup should appear to ask) from the user to enable the GeoLocation. Also your browser should support it - all modern browsers support it (IE9+, Chrome, Mozilla, Opera, Safari).
In order to hide the element, just modify the previous code to be like this:
$('.getUserGeoLocation').click().hide().next('span').hide();
This will also hide and the hint. If you want to keep the hint, make the code like this:
$('.getUserGeoLocation').click().hide();
I hope this helped!