Close

Profile: Deni

Avatar

User posts

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;
}

10 years ago

rush69 wrote:
Hello,   
It would be possible to implement a carousel with all the reviews of the site?

Thanks


Hi, 

Everything is possible, but for achieving this you need to create your own logic and write both back and front-end logic. You can insert this carousel in the pages via the Html Widgets plugin. 
You can make a suggestion for such plugin in our User Voice portal.

I hope that helped you !

10 years ago

ezrussmith wrote:
What caused the error was I had created a custom product template. QuickView needed its own version of the template of the same name added to it. Problem solved.


Hi, 

Yes, I did not think of that. I am glad that you have found this. Keep up the good work!

10 years ago

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!

10 years ago

Hi, 

I have just checked this and it is working fine - it is not throwing an error. Let us know if you got this resolved.

10 years ago

CorsaMeccanica wrote:
Hi,

It would be nice if there was also a contact us form on the store pages. It'd also be convenient to have the ability of enabling/disabling whether it will display in the mega menu from the plugin settings rather than from the widget options.


Hi, 

When I said in your ticket "you can suggest this feature in our user voice portal", I meant this, so other customers can vote for it.

10 years ago

Hi, 

We made some mark-up re-factoring and we missed to update this comment. It should look like this: 

<li>
  <span title="Topics">Topics</span>
  <div class="sublist-wrap">
    <ul class="sublist">
      @foreach (var topic in Model.Topics)
      {
        <li><a href="@Url.RouteUrl("Topic", new {SeName = topic.SeName})" title="@topic.Name">@topic.Name</a></li>
      }
    </ul>
  </div>
</li>

10 years ago

kaka135 wrote:
Hi Deni,

Sorry, I was looking at the admin demo and thought I need to do some setting. 
Thank you for the added feature, it's awesome.

Can you please guide me how I can make changes to achieve these:
1) Limit the search result to 3 nearest shops only.
2) Always use the user's current location.

Thank you in advanced.

regards,
Lee Ka


Hi, 

1. You can do this via CSS like this:

.shops-list li:nth-child(n+4) {
   display: none;
}


Also, you can suggest this in our User Voice portal to be included as a setting for future releases.

2. Since this is private information and the browsers always ask if you want to provide your location, we can not always use it without the permission of the user.

If you only want to skip the moment when the user needs to click on the "Use My Current Location" link, then you should place this JS code inside any JavaScript file:

$(document).ready(function () {
   $('.getUserGeoLocation').click();
});


Hope this helps!

10 years ago

kaka135 wrote:

Hi, 

is the search feature included in the new version? I have downloaded and updated the plugin, but couldn't find the search feature. If it's included, can you please guide me how to use the search? Thank you.

regards,
Lee Ka


Hi, 

Yes, it is included and you can see it working on our demo. You do not need to do anything in order to enable it.

10 years ago

defer wrote:
Thank you so much! Please let me know when you done :)


Hi, 

The changes are deployed and ready to download.