Close

Profile: hristian.dimov

Avatar

User posts

8 years ago

deselt wrote:
I have one question, we one page checkout and recently we update the Autorize.NET plugin because the Autorize.NET requirement but now we getting error http://www.nopcommerce.com/p/2320/authorizenet-payment-module.aspx when customer enter different address than credit card have in file. There is no order created but money take out from client. Can be related with this plugin? I see it have in configuration section Payment method update and there is just Country ID.


Hi,

I don't believe that this has anything to do with the plugin as our plugin is not responsible for creating orders or charging money from the customers. After clicking the "Checkout" button all the logic is handled by nopCommerce code and the selected payment provider ( Autorize.NET plugin ).

Hope this helps!

keremdemirer wrote:
Hello again,

Thank you for you reply. Is it OK that I download v3.5 version from My Downloads page?

Best,
Kerem


Hi Kerem,

Yes, you should download the latest version of the plugin from the My Downloads page.

keremdemirer wrote:
Hello,

We use customer reminders plugin with nopCommerce version 3.5. We just released another store, related scheduled task creates incorrect messages. I created two reminders with same logic for different stores. Both reminder sends messages for all orders. Each reminder should send the related stores messages I suppose.

Can you help please?
Kerem


Hi Kerem,

sorry for the late reply, we have been investigating this.

We have fixed this on the 14th January 2016 - revision: 18934. You are probably using an old version of the plugin where this issue exists. Could you please download and update the plugin to the latest version following this article: https://www.nop-templates.com/how-to-update-a-nopcommerce-plugin

Hope this helps!

8 years ago

botman86 wrote:
Hi!
We have the same issue!
We have nop 3.6 urban theme and We have just passed from an Sharing hosting To a dedicated server!
Unfortunately there is a Bad performance,  the application tool show a restart every 20 seconds (in log) !
Our provider said that there are some wrong configuration! 
Could you show to us  in which way you have solved this issue?

Best regards

Paolo


Hi,

please do not duplicate forum posts - https://www.nop-templates.com/boards/topic/2421/nop-35-after-i-install-the-plugins-the-site-is-slow-and-always-presenting-application-started-in-the#12301

botman86 wrote:
We have a similar issue With nop 3.6 and Urban Theme.
We are on a dedicated server and Application Pool Recycle time is 1740 minutes. No limits on memory.

Application started every 20 seconds.

How can we resolve the problem?

we have also opened a ticket with you about this.



Hi,

In the ticket discussion, you have said that you have changed the "Maximum number of worker processes" from 15 to 1, which fixed your issue. Only if you are using web gardens, you need it to be more than 1. But as in nopCommerce 3.60, you do no have distributed cache or support for web gardens you should have it set to 1 worker process.

Hope this helps!

mkzaman wrote:
One more thing, how do you generate the string showing? Like Price: Low to High for PriceAsc Enum Value. When I have added SkuAsc in the enum file, it shows Sku Asc in the admin panel. What's the way to beautify the string we want to show in the admin panel.


Hi,

in nopCommerce the enums are localized in this way: Enums.Nop.Core.Domain.Catalog.ProductSortingEnum.CreatedOn. So, basically, you need to add a new resource corresponding to the new enum value. You can add it in the Administration -> Configuration -> Languages -> View string resources and click on the "Add new record". In the resource name add "Enums.Nop.Core.Domain.Catalog.ProductSortingEnum.SkuAsc" and for the value "Sku acdending" for example.

Hope this helps!

Bugs
8 years ago

[email protected] wrote:
You may have fixed this already in later builds, but in 3.7.209.18969 your link to the google fonts in _Root.Head.cshtml is using http.  You need to use https or some browsers throw a "HTTPS security is comprimised" message when accessing secure pages.


Hi,

Yes, it is fixed in the 19141 revision - Monday, February 1, 2016.

mkzaman wrote:
Ajax filter provided us the opportunity to select default sort option for category page.



I didn't find the view file for admin panel, so I assume it's embedded. Is there any way to include more sort options in the dropdown rather than the default nop sort options? I just want to know how to populate more options in the dropdown. 


Hi,

we are using ProductSortingEnum enumaration from nopCommerce, so if you need to add more sorting options you need to make changes in this file: "\Libraries\Nop.Core\Domain\Catalog\ProductSortingEnum.cs" / you need to have the source code version of nopCommerce /.

Hope this helps!

8 years ago

chadwixk wrote:
Thanks Hristian for your quick reply. So I do have that .js file, but I did not have that reference to it in Head.cshtml, so I added it at line 51 (see below in bold):


However, now I do not get that error, but when clicking the Products link arrow to show the categories, the sub-tree of categories is not displayed and no errors are thrown in the chrome console.

I can see the .close class being added to the <div class="plus-button"></div> element, so something is firing, but the categories are not displayed. You can verify this yourself by navigating to http://ExtremeLEDLightBars.com with your mobile device or by emulating a mobile device in Chrome dev tools.

Any ideas?

Thanks in advance!
Chad


Hi Chad,

I can see that there are a lot of mark up difference between your site and our demo site ( http://themes.traction.nop-templates.com/ ) and maybe this is the reason why the menu is not expandable on mobile devices.

Could you please update your theme to the latest version as I believe this will fix everything that is related to the menu. You can follow this article: https://www.nop-templates.com/how-to-update-a-nopcommerce-theme

Hope this helps!

8 years ago

goodman wrote:
I have a contact form, with a drop-down list of the shops, user select on which shop and fill out the form. My Issue is when the user submits the form, i need him to receive the copy of the form he filled out and the shop of which he selected to also receive the mail as well and on the system it only sends 1 email account on which it was configured on the  email account. 


Hi,

You need to make customization to the nopCommerce source code as this change is not related to our products. The changes should be done in the CommonController.cs around line 536 - _queuedEmailService.InsertQueuedEmail(); just add the CC property to QueuedEmail object.

Hope this helps!