Close

General Discussion

Deni
9 years ago
#8605 Quote
Avatar
  • Moderator
  • 389
Hello, 

The features will be ready very soon and will be available for download. They are developed at the moment, next they will be styled and then we will release the new version of the plugin.
Best Regards,
Mladen Staykov
Nop-Templates.com
defer
9 years ago
#8611 Quote
Avatar
  • 9
The uploaded preview image for a store seems to be forced at the width of 300px in the AllShops overview page.

All my other images are controlled by admin Configuration > Settings > Media settings, but not this one.

How can I change this? I need it to be bigger.

Thanks in advance!
Deni
9 years ago
#8613 Quote
Avatar
  • Moderator
  • 389
defer wrote:
The uploaded preview image for a store seems to be forced at the width of 300px in the AllShops overview page.

All my other images are controlled by admin Configuration > Settings > Media settings, but not this one.

How can I change this? I need it to be bigger.

Thanks in advance!


Hi, 

Thanks for reporting this. We will make the plugin use the Media Settings and we will let you know when it is ready.
Best Regards,
Mladen Staykov
Nop-Templates.com
defer
9 years ago
#8614 Quote
Avatar
  • 9
Thank you so much! Please let me know when you done :)
Deni
9 years ago
#8629 Quote
Avatar
  • Moderator
  • 389
defer wrote:
Thank you so much! Please let me know when you done :)


Hi, 

The changes are deployed and ready to download.
Best Regards,
Mladen Staykov
Nop-Templates.com
defer
9 years ago
#8630 Quote
Avatar
  • 9
Thanks alot! I'll try it out :)
kaka135
9 years ago
#8634 Quote
Avatar
  • 16
Deni wrote:
Thank you so much! Please let me know when you done :)

Hi, 

The changes are deployed and ready to download.


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
Deni
9 years ago
#8639 Quote
Avatar
  • Moderator
  • 389
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.
Best Regards,
Mladen Staykov
Nop-Templates.com
kaka135
9 years ago
#8641 Quote
Avatar
  • 16
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

Deni 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.
Deni
9 years ago
#8651 Quote
Avatar
  • Moderator
  • 389
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!
Best Regards,
Mladen Staykov
Nop-Templates.com