Close

Profile: hkreklame

Avatar

User posts

Bugs
one year ago

Hello.

We have a clean nop install of 4.60.1 and have copied in all nop-template plugins from NopCompletePluginCollection (4.6.75.35269).

When building with dotnet build or in rider we get a lot of errors with _ViewImports.cshtml

I think you are mistaken. This isn't a problem with any other plugins on VS2022. I only have this problem with nop-templates. I want to use VS 2022, so could you look into this issue asap?

3 years ago

Maybe the total file is about 350 kb. But i think there are methods that are blocking the Main thread.

3 years ago

I think your javascripts are the reason we are being punished for js blocking Main thread. We are bundling 100 kb of js but i think the total size is almost 1mb and thats prob jquery+sevenspikes. Is there any way to async load the javascripts? We have made all images async and we still only get 25 score on pagespeed. Check navasport-dev.azurewebsites.net

https://developers.google.com/speed/pagespeed/insights/?hl=no&url=https%3A%2F%2Fnavasport-dev.azurewebsites.net%2F&tab=mobile

7 years ago

It works now. Thanks!

7 years ago

Hello.

Do i have to update both core and ribbons?

7 years ago

Hello.

Is there a condition for "marked as new"? I can't seem to find it.

7 years ago

I had to insert it into

$(document).ready(function () {

    $(document).on('quickTabsRefreshedTab', function () {
        alert();
    });

}

Thanks for your help!

7 years ago

Hello. I'm using version 3.8.456.22141 on quicktabs.

7 years ago

hristian.dimov wrote:
Is there any way to know when the contact form is sent? I need to track the event, but only IF the form is successfully sent.

Hi,

Yes, there is an event when the form is successfully sent. However, this event is used also when a new review is submitted. The event is called "quickTabsRefreshedTab". Would that work for you?

Hello.

This works. How would i write the function?

Hi,

you can do something like this:

$(document).on('quickTabsRefreshedTab', function(){ /* Enter your code here */ });

Hope this helps!


Are you sure this method will run after the contact form is posted?

I did a alert(), but i didnt run.