Close

Bugs

Deni
8 years ago
#9827 Quote
Avatar
  • Moderator
  • 389
justinhof wrote:
I currently have a nop installation running three sites that each have a specific theme from Nop Templates. They are:

http://nop.deepblueyachtsupply.com - Uses Traction theme
https://www.lauderdaleprop.com - Uses Nitro theme
https://www.propellerdepot.com - Uses Motion theme

For the default site, the URL for images get intermingled with URLs of the other two sites domain wise, and it adds weird stuff in place of the nop section. This includes things like ww.w, 4www, and most recently alt1.aspmx.l.google.com.

Because the products and images are all used between sites, the images load. However, Google is now indexing these weird URLs and dinging the sites. 

Feel free to go to http://nop.deepblueyachtsupply.com and do a view source to see. 

Have you all seen this before, and what could be causing the image URL to not be set to the domain that the request comes from for this theme?

Thanks,
Justin


Hi, 

Yes, we have seen similar "symptoms". You have to check the following possible reasons:

- clear the cache of the application and see if there is some effect.
- check the hosting configuration (HOST values) - if you are using shared hosting this is the most often reason. Anyway, you can ask for help your hosting company.
- In older versions some cross-origin attacks were possible, so you can delete the Guest accounts.
- maybe this topic could help you.

The links of the images are generated automatically by the default NOP code and our products does not affect them in any way.

I hope this helped you. Let us know if you have any progress !
Best Regards,
Mladen Staykov
Nop-Templates.com
porcelanosa
8 years ago
#10394 Quote
Avatar
  • 24
I don't know if someone reported it but i will go ahead and say, Mega Menu doesn't support multi store settings of topics if topic setting "Include in top menu" is checked, meaning no matter what store you are in that topic will display on all stores even if you limited that topic only to one specific store.
Deni
8 years ago
#10400 Quote
Avatar
  • Moderator
  • 389
porcelanosa wrote:
I don't know if someone reported it but i will go ahead and say, Mega Menu doesn't support multi store settings of topics if topic setting "Include in top menu" is checked, meaning no matter what store you are in that topic will display on all stores even if you limited that topic only to one specific store.


Hi, 

Since the topic setting "Include in top menu" was added back in 3.50 (which was released on 8th of December 2014), we support the getting of topics per store.

I have just tested the topics showing per store and it is working fine. 

Please check if your multi-store is correctly set up and the setting "Ignore "limit per store" rules (sitewide)" is unchecked.
Best Regards,
Mladen Staykov
Nop-Templates.com
christopherho
5 years ago
#14966 Quote
Avatar
  • 3
Hello, we are trying to use the Template "with pictures" for a child category but trying to swap templates gives us "You can't select this template because it does not allow the menu item to have any child elements or any parent elements!". Is it possible to have a parent and also allow the child categories to have pictures?

Valentin
5 years ago
#14968 Quote
Avatar
  • Moderator
  • 172
christopherho wrote:
Hello, we are trying to use the Template "with pictures" for a child category but trying to swap templates gives us "You can't select this template because it does not allow the menu item to have any child elements or any parent elements!". Is it possible to have a parent and also allow the child categories to have pictures?



Hello christopherho,

unfortunately no, you can have a template with pictures only on the first level of categories in your Mega Menu.
Best Regards,

Valentin Kirov
Nop-Templates.com
faheemsalik
5 years ago
#15058 Quote
Avatar
  • 1
Hi,

I am facing an error in v4.1, while I add navigation property in Customer Table using another partial class

Error is:
"Navigation property 'Addresses' on entity type 'Customer' is not virtual. UseLazyLoadingProxies requires all entity types to be public, unsealed, have virtual navigation properties, and have a public or protected constructor"



// this is the collection I added with foreign reference
protected ICollection<UserFriend> _userFriends;
public virtual ICollection<UserFriend> UserFriends
        {
            get => userFriends ?? (userFriends = new List<UserFriend>());
            protected set => _userFriends = value;
        }


I found an answer to it on google that We need to use EF Core proxies if Lazyloading is enabled in the following link
https://stackoverflow.com/questions/41881169/navigation-property-should-be-virtual-not-required-in-ef-core/41881389

Need an urgent reply/fix if possible.
Thanks
jakubz
4 years ago
#16194 Quote
Avatar
  • 182
Hi!
we use mega menu and last time change links. We  stop using "category" and use custom links and there add catalog tree...

Today we receive 2000 errors on mobile for the missing "ID"
... We create links: "Cucstom name" Href="/test-name". All works fine, but google robot can't scan it... How we can fix this? is there any field to make it?
jakubz
4 years ago
#16195 Quote
Avatar
  • 182
jakubz wrote:
Hi!
we use mega menu and last time change links. We  stop using "category" and use custom links and there add catalog tree...

Today we receive 2000 errors on mobile for the missing "ID"
... We create links: "Cucstom name" Href="/test-name". All works fine, but google robot can't scan it... How we can fix this? is there any field to make it?


Here is more information "what we should" change: https://developers.google.com/search/docs/data-types/breadcrumb
softwarereg
4 years ago
#16267 Quote
Avatar
  • 2
When the Nop Mega Menu (Version: 4.0) generates an <li> for a menu item such as the one below, it leaves space at the end of the class name that is added to the <li>. This is being flagged as non standard (https://www.w3.org/TR/html4/types.html#type-id) by some parsers.


<li class="Some-Class ">
<a href="https://www.MyURL.com/MyPage.html" title="MyTitle">
    <span>
       My Link
    </span>
</a>
</li>
Valentin
4 years ago
#16275 Quote
Avatar
  • Moderator
  • 172
hwarmstrong wrote:
When the Nop Mega Menu (Version: 4.0) generates an <li> for a menu item such as the one below, it leaves space at the end of the class name that is added to the <li>. This is being flagged as non standard (https://www.w3.org/TR/html4/types.html#type-id) by some parsers.


<li class="Some-Class ">
<a href="https://www.MyURL.com/MyPage.html" title="MyTitle">
    <span>
       My Link
    </span>
</a>
</li>


Hi hwarmstrong,

in this particular case, the space after the first class name is left because users can add a second class name dynamically and we don't want them to stick together.

The spaces are expected and supported for the class attributes.
We haven't had any issues or reported problems for this so far. The white space is being ignored the same way as it is when there are two or more classes on the same element.
Best Regards,

Valentin Kirov
Nop-Templates.com