Close

Profile: hristian.dimov

Avatar

User posts

[email protected] wrote:
I'm probably missing something obvious here, but how do we change the default search radius dimension from km to miles?


Hi,

At the moment the plugin supports only kilometers. We are planning to add setting for miles/kilometers soon.

Which version of nopCommerce you are using ?

gavinramm wrote:
We can't upgrade to 3.6 right now due to time and dependencies.
Is there anyway that this can done with 3.5 or something that at least takes them to the products?


Hi,

We merged the changes in 3.5 version. You need to download and update the plugin to the latest version following this article: http://www.nop-templates.com/how-to-update-a-nopcommerce-plugin

After updating the plugin you need to go to the \Plugins\SevenSpikes.Nop.Plugins.CustomerReminders\Views\TokenTemplates\_ProductsWithPictures.cshtml view and change this:

string productUrl = storeUrl + productSeName;


to be:

string productUrl = storeUrl + "productreviews/" + product.Id;


The new token that you should use is in the message templates is: %Order.ProductsWithPictures%

Note: Keep in mind that this will affect the AbandonedShoppingCart.ProductWithPictures token. If you want to make the change only for the CompletedOrder.ProductWithPictures you will need to copy the whole content from the _ProductsWithPictures.cshtml, paste it into Order.ProductsWithPictures.cshtml view and do the url change there.

Hope this helps!

9 years ago

JayC wrote:
It would be great if there was an easy way to add or rearrange fields in the checkout Address Sections.


Hi JayC,

Could you please suggest your idea to our UserVoice portal so that other customers can vote for it.

Thanks.

9 years ago

TimCools wrote:
Hi, 

We are implementing a custom birth registry and we would like to implement following features on check-out:
- In some cases we need to offer the user the possibility to select a shipping address of another user. When the cart is checked-out then the order needs to be sent to this address.
- In some cases we need to add a personal message to the order. So we need to add an input panel on the check-out page, and to store the data when the order is placed.

How can we start with this modification?

Thanks for your help,

Tim


Hi Tim,

1. This is not supported by nopCommerce out of the box and our plugin does not support it too. However, you can use ActionFilters to hook to the preparing the CustomerAddresses and perform your additional logic there.

2. You can use the checkout attributes to create a multi-line textbox. In this way the customer will be able to fill the textbox with the needed text and this will be saved to the order.

Hope this helps!

gavinramm wrote:
Hi,

I want to be able to have the products listed that they purchased with a link off to ADD NEW review. I don't want them to have search out the product etc.. a single click and they're at the add new review screen.

Cheers
Gavin


Hi Gavin,

We introduced this functionality in 3.60 version and the change could be done very easily. It will be better for you if you can upgrade to 3.60 version as there are a lot of bug fixes and improvements that you can benefit from. 

If you do the upgrade to 3.60 version write back to us and we will tell you what you need to change in order to have this functionality.

Hope this helps!

objecta wrote:
Thank You very much for the reply.
We only need the Address1 and the Zip field to lookup "close by" pickup shops. Our carrier service will send back pickup addresses based on the supplied Addresse1 and Zip values

We would really apprciciate an update to fix this issue.

Also we have tried to disable the One Page Checkout and use the checkout on the Theme (Motion) and are experience the same behaviour here as well. Is this the same problem on Your Themes?


Hi Klaus,

When you disable the OnePageCheckout plugin the system will use the default checkout which comes from the nopCommerce. The Motion theme itself does not provide any different checkout than the default one. You can try to switch to the DefaultClean theme and you will see the same results.

Later today we will discuss the new settings with the team.

objecta wrote:
Hi

I have developed a new Shipment plugin that is using information from the Shipment adresse provide in the checkout. When the GetShippingOptions is called from Your One Page Checkout the shipping adresse is missing data in several of the fields provided during checkout.

I have also tested using the FixedRateShipping plugin and here the Shipping Addresse is missing information too. Also I have disabled the One Page Checkout feature and tested again, this time Shipping Adresse is correct.

I'm using NopRealOnePageCheckout_3.6.572.16989.zip and I have tested with several different configuration with the same result, the Shipping Address is missing information.

To reproduce just use the FixedRateShipping and set a breakpoint in the GetShippingOptions method and check the ShippingAddress.

We cannot use the Your One Page Check in our setup, because we need the Adresse1 and Zip
information to lookup Pickup Addresses for the shipment carrier.

Best regards
Objecta Data
Klaus E. Frederiksen



Hi Klaus,

Currently, the OnePageCheckout plugin updates only a few fields in the Shipping Address - country, state/province, city and zipcode. Most of the shipping methods depends only on these fields and that's why we update only them when they are changed. This is the reason why you receive a missing fields in GetShippingOptions method.

The standard checkout process works for you, because the shipping address and the shipping methods panels are on different pages. First, you need to enter your shipping address and then you see the shipping methods based on that address. However, the things with OnePageCheckout plugin are a little bit different. Everything is visible at the same time on the page and some actions on the page should trigger an update to some other panels ( i.e. clicking on BillingCountry should update PaymentMethods ). This is why we should be careful which fields need to be updated, otherwise this may have a negative impact on the loading time.

Could you please explain in more details how you use the Address1. Are the "Address1" and "ZipCode" the only fields that you need ?

I'm asking this because based on your information, we might decide to add a few settings which will trigger an update to ShippingMethods when you change the Address1 or Address2 or even the Phone Number.

Looking forward to your reply!

9 years ago

justinhof wrote:
Awesome, thank you so much. The nopAjaxFiltersFiltrationCompleteEvent worked great.

I noticed there is a way to get totalCount from that call as well. Anything special I need to do to get it? I tried adding it to the function as a parameter but nothing.

Thanks again!


Hi Justin,

You can do something like this:

$(document).on('nopAjaxFiltersFiltrationCompleteEvent', function(e) {
  $('.category-grid.sub-category-grid').hide();

  console.log(e.totalCount);
});


Hope this helps!

mukumarshah wrote:
My ticket post time is 8/15/2015 3:25:56 AM
and reply time is 8/17/2015 6:17:20 AM.you tell me that your responce time "is 24 hours response time in business days only!".after 24h time gone i use this forume.


Hi mukumarshah,

Our working time is Monday - Friday ( business days ). Saturday and Sunday are non-working days and therefore the tickets in this interval will receive a response on Monday.

I hope that this information is useful.

9 years ago

justinhof wrote:
Hello,

Is there a way to have the Quick Tabs work on a Category or Manufacturer page? I am looking to accomplish something like this:

http://www.deepblueyachtsupply.com/marine-bearings/cutless-bearings

Thanks,
Justin



Hi Justin,

Unfortunately, there is no way to make the Quick Tabs plugin to work on category or manufacturer pages. It's supposed to work only on product page.

Hope this helps!