Close

Profile: Stefan

Avatar

User posts

9 years ago

BlueMed wrote:
Please post here anything related to Nop Quick View plugin


Dear Support Team,

We have used the Nop.Traction theme 3.4.Quick view is not working. Quick view zoom image is placed on top right corner of the product.When mouse hover , and click shows the detailed page instead popup.I want the quick view exactly like on Traction template demo site.Kindly help me on this.

Regards,
Ela
BlueMed Development Team


Hi BlueMed,

Would it be possible to double check the settings in the Nop Quick View plugin from admin -> plugins -> nop quick view -> settings

make sure the following is being set:

Product item selector:  .product-item
Quick View button parent: .buttons

If the issue still exists would it be possible to send us a link to your site, so that we can have a look what might be wrong.

Hope that helps!

Bugs
9 years ago

lmheah wrote:
I am using version 3.30


Hi again,

The fix was made and uploaded on our site several months ago. You can just download the theme again and replace your Themes/Motion/Views/Catalog/ProductTemplate.Simple.cshtml and Themes/Motion/Views/Catalog/ProductTemplate.Grouped.cshtml files with the ones from the downloaded package.

Please let us know if the issue still exists!

Best Regards!

Bugs
9 years ago

lmheah wrote:
Hi,

It seems like schema for product name does not properly configured.
I got errors in google webmaster tools for all my product page.
The error message is google webmaster tools is "Error: Missing required field "name (fn)"."

Refering to sample site below:-
http://www.puuuvsoap.com/bm068-oval
Search for 'itemprop="name" ' in HTML, it is not bounded insides ' itemtype="http://schema.org/Product" '.
Can you fix this asap?
Cheers.


Hi,

I suppose you are not using nopCommerce version 3.4 as this had been fixed already. Would it be possible to let us know which version of nopCommerce you use so that we can merge the fix and let you know how to integrate it.

Thanks in advance!

Strip HTML
9 years ago

Hi KEVLINGO,

Sorry for the late reply!

Unfortunately there is no way to strip the HTML. In nopCommerce version 3.4 there is a setting which if enabled the product short description can be used for meta description which is much more advised as the short description is a plain text field and there is a size limitation on it. It is better to use it as the meta description tag length should be no more of 156 chars for optimal results. Is there any specific reason why you should want to use the product full description for a meta description.

Hope that helps!

Hi Jacob,

Thank you for your reply!

We are aware of this issue and working on it to get it fix a.s.a.p. For the time being you can enable the Ajax Cart plugin and disable the "Enable Ajax Cart On Grouped Product On Pages With Product Boxes:" setting from the plugin setting and everything should work as expected.

Best Regards!

9 years ago

ospacinc wrote:
I am facing problem with installation of Plugin Nop Anywhere Sliders and getting message There was an error parsing the query. [ Token line number = 7,Token line offset = 1,Token in error = CREATE ]
I am using SQL Server 2012, please help me to install this


Hi OSPACINC,

As this error might occur only if you try to install the plugins on SQL Server CE, would it be possible to provide some more info on this:

1. What is the version of SQL Server 2012 that you use?
2. Which version of nopCommerce do you use?
3. On which plugin installation you receive the error from your message?

Looking forward to your reply!

Hi Alain,

Just to make sure I got your question correctly, are you talking about the filters on manufacturer page. If that is the case I am afraid that there isn't such functionality filter by category on a manufacturer page. If you think this will be a valuable feature of the plugin, you can propose it in our user voice portal .

As a workaround you can create a specification called Category and for each product add as a value the name of the category to which is mapped. Thus you will see the category specification appear in the filters.

Hope that helps!

Best Regards!

Bugs
9 years ago

Hi CEEJAY34,

The Nop Cloud Zoom is disabled on mobile device by default, because on mobile devices you do not have a mouse over event or something like that to trigger the zoom. What is even more it is not a good idea to have popups on mobile devices as it is not very user friendly. That is why on mobile device the cloud zoom is not integrated and when the product image is clicked, it should be opened in another tab of the browser where the customer can see a bigger version of the image.

Hope that makes sense!

Bugs
9 years ago

ezzat2k wrote:
I have upgraded to NopCommerce 3.40 2 weeks a go and also upgraded the Quickview plugin and I have a an issue.

When opening the Quickview Pop up/Window, If the item has an image the picture displays fine, but when no image is assigned/ default-no-product image it shifts out side of the image frame and the "GO TO PRODUCT PAGE" is behind the mage almost invisible, where should I start looking?!

Thanks


Hi ezzat2k,

Thank you for your feedback! It was actually an issue that had been fixed. In order to integrate the fix add the following css to either the Plugins\SevenSpikes.Nop.Plugins.QuickView\Themes\Electronics\Content\QuickView.css file or in the admin -> plugins -> nop electronics theme -> settings -> custom head styles textbox:

.quickViewWindow .gallery .picture {
    height: 250px;
}

Thanks again!

Best Regards!

9 years ago

Hi DJ_BALOGH,

First you have to make sure that you have the CategoryTemplate.WithPictures selected from the administration of the mega menu plugin.
Then you need to change your code slightly as displayed below:

foreach (var category in Model.CategoriesModels)
        {
    <li><a href="@Url.RouteUrl("Category", new { SeName = category.CategoryModel.SeName })">@category.CategoryModel.Name</a>
        @if (category.SubCategories.Count > 0)
        {
            <div class="dropdown categories fullWidth [email protected]">"


then in the MegaMenu.css file add the following:

.dropdown.cat-id-77 
{
// your custom styling goes here
}


provided that the id of the category is 77.

Hope that helps!

Please let us know how it goes. If you can send us a link to your store it might be easier for us to see what might be wrong.