Close

Profile: IvanStoyanov

Avatar

User posts

11 years ago

rohit.gonsalves wrote:
Hello,

But I am using fresh install of nop commerce 2.8 and latest package from Nop-template.

Also I am trying this on Default clean theme. Please advise.



When did you download the package from our website? We applied the fix yesterday.

11 years ago

rohit.gonsalves wrote:
I have integrated this Quick view module and it is rendered at the bottom of the page. After this page hangs.

How to attach screen shot in this forum?

-Rohit.


Hi Rohit,

Thank you for choosing our products and reporting this problem.

We are aware of it and have already fixed it. Please read the following guide on how to update your theme to the latest version:
http://www.nop-templates.com/t/How-To-Update-A-NopCommerce-Theme

Ivan Stoyanov

11 years ago

drcomputer wrote:
Hi,

In product detail page , Image is coming twice and tabs are not visible.
please check the url http://istyle4u.azurewebsites.net/elegant-pendant

error image : http://i50.tinypic.com/2ngd0qs.png

thanks


Hi drcomputer,

When we click http://istyle4u.azurewebsites.net/elegant-pendant everything is OK. We do not see your problem.

Ivan Stoyanov

11 years ago

chenos7 wrote:
Hi,

I think this is not regarding the use of RTL, since I've took a new site without RTL support and it happens when you change the view to list.
In case you cannot reproduce, please let me know how to upload am image

Best regards,
Chen


Hi chenos7,

You are right. The list view of the Fashion theme was styled for images that are rectangle and were breaking for square pictures. We have made some changes to the css of the theme, so now the list view supports all king of pictures.
You can add the changes yourself just open the Fashion.css file and make the following changes:

.product-list .product-item
{
  width: 100%;
/* deleted the height property */
  margin-top: 10px;
  position: relative;
    overflow: hidden;
}


.product-list .product-item .picture
{
  float: left;
  margin: 10px 0 10px 0;
    width: 200px;
    overflow: hidden;
}


.product-list .product-item .product-title
{
  padding: 0;
  margin: 10px 150px 0px 200px;
  text-align: left;
  color: #555;
  font-weight: bold;
}


Ivan Stoyanov

11 years ago

swinstead wrote:
Hi,

I've been trying out Anywhere Slider and it's been working just fine.

I do want to show a slider on a specific Topic page. The documentation does tell me how to create a custom widget zone on a layout, etc. So if I wanted a slider to appear on each Topic page, I could do that.

But is there a way to show a slider on a specific Topic page?



Hi swinstead,

Sadly, nopCommerce does not have the functionality to add script or razor code to topics. To accomplish this you need to modify the /Views/Topic/TopicBlock.cshtml view.
Find the following code:

<div class="topic-html-content-body">
            @Html.Raw(Model.Body)
        </div>


and modify it to look like this:

<div class="topic-html-content-body">
            @Html.Raw(Model.Body)
            @if (Model.SystemName == "YourTopicName")
            {
                @Html.Widget("custom_widget_zone")
            }
        </div>


You need to replace YourTopicName with the system name of the topic, in which you want to add the custom widget zone and custom_widget_zone with the name of your custom widget zone. You can do this for as many widget zones or topics as you like.

After this follow the documentation on how to add a custom widget zone and add the widget zone to the SupportedWidgetZones.xml file.

Regards,

Ivan Stoyanov

mstuart wrote:
From the TabUIModel, I have access to ProductModel, ProductId, Description, Review, Specs, etc.

I need to add SKU.  I don't see how I can do this currently.   Is there a way to do this that I missed?

Many Thanks!!!

Mike


Hi mstuart,

At you can not access the SKU of the product. We did not implement this, because the SKU is set for a product variant and not a product, so you can have multiple SKUs on a product page. The only way to implement this is to add the product variants to the TabUIModel. Please suggest this in our User voice portal and we will consider implementing this feature in the next versions of our plugins.

Ivan Stoyanov

11 years ago

drcomputer wrote:
How to add nationality filed with a dropdown in registration page


Hi drcomputer,

nopCommerce does not support nationality field on the registration page. In order to add this functionality you need to extensively modify the nopCommerce core functionality. You can suggest this functionality in the nopCommerce forum.

Ivan Stoyanov

11 years ago

drcomputer wrote:
Hi,

I want to display name in the headerlinks instead of emailusername? Please help me


thanks


Hi drcomputer,

You can not display the name of the user. The nopCommerce allows you only to display the email or username of the customer. To display the name you need to modify the logic of nopCommerce core. The best thing is to suggest this in the nopCommerce forum.

Ivan Stoyanov

11 years ago

mstuart wrote:
I demoed the AjaxFilters to my client today.  They liked it, but had two complaints.

1) Performance.  

They did not like how long it took to return results.  I mentioned that it is was due to the including of subcategories and the number of products, but that didn't go over so well.

They showed me two sites where similar filters are used and have even more products than they do.

http://www.zappos.com/mens-shoes~ov

and

http://www.ebay.com/sch/93427/i.html?_sop=12&_ipg=48&_dcat=93427



2) As a compromise to the performance, they asked if it was possible to have a  "go" or "apply" filter button enabling the user to make multiple selections first then click a button to filter.  This would speed things up a bit due to not having to wait for the response before clicking each filter item.

Example: http://www.ebay.com/sch/93427/i.html?_sop=12&_ipg=48&_dcat=93427

(clicking the "see all" link displays more options with a "go" button)


Hi mstuart

We are aware of the performance issue of the Ajax Filters plugin. It appears when you have more than a thousand products with many specification and attribute options in a single category. At the moment we are working on improving the performance of the filters and we will let you know as soon as we are ready.

It is a good suggestion to add "apply"  button to the filters to apply a selection. Can you please add this to our User voice portal, so that other clients can see it and vote.

For the moment I suggest to reduce the number of products in a category to 200-300 and not include products from subcategories.

Best wishes,

Ivan Stoyanov

11 years ago

dida1981 wrote:
I 'm using Ajax Filters for 2.8 but I'm getting 'Loading the page failed.'

The log error is:
An error occurred when trying to create a controller of type 'SevenSpikes.Nop.AjaxFilters.Controllers.Catalog7SpikesController'. Make sure that the controller has a parameterless public constructor.


Hi dida1981,

Have you made any changes to the constructor of the nopCommerce Catalog controller? If you have please use property injection instead of dependency injection.

Also please open the Global.asax file, add some spaces at the end and save the file. This will restart your application.

Ivan Stoyanov