Close

Profile: hristian.dimov

Avatar

User posts

8 years ago

mstuart wrote:
How do I show the SKU in the Order Summary section of Nop One Page Checkout?

I have enabled Show SKU in Catalog Settings.  It displays in the shopping cart, but not on the checkout page.


Hi,

It is a CSS problem but depends on the theme that you are using.

If you are using a theme, which is not ours, please go to the "\Plugins\SevenSpikes.Nop.Plugins.RealOnePageCheckout\Themes\DefaultClean\Content\RealOnePageCheckout.css" else go to the "\Plugins\SevenSpikes.Nop.Plugins.RealOnePageCheckout\Themes\YOUR_THEME\Content\RealOnePageCheckout.css" and remove this:

.cart .sku {
  display: none;
}

Hope this helps!

8 years ago

support II wrote:
Thank you,

I have the last version of the theme and despite the tips of global.asax the problem still here...


Hi,

Could you please delete the Temporary ASP.NET Files, because it seems that it is a cache issue. The temporary asp.net files are located in the "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files" and you should delete everything in this directory.

If this does not help, please submit a ticket in our system proving FTP access to your site so we can check the problem.

Hope this helps!

Bugs
8 years ago

Tebox wrote:
Problems on mobile phones!
When customer is visiting on a moblie device the cart is not working, it have been testet on a iphone 6 and a sony z3. When adding a product to cart, the sign says succes and the cart link is shown. But when going to the cart it is empty.

The cart is working on desktop and ipad without problems.

Sorry guys ! it was a bug in nopcommerce and not the theme ! ;)


Hi Tebox,

I'm glad you fix the issue.

As you mentioned the problem is not with the theme. It is how the nopCommerce distinguish the different domains. In other words "google.com" and "www.google.com" are two different domains for nopCommerce, even if they are practically the same domain.

Let me illustrate it with an example. When I visit your site without "www", add something in the cart and then click on the checkout button I'm redirected to the CheckoutPage and because there is an SSL certificate I'm redirected to the CheckPage but with "https://www" and nopCommerce reads it as a different domain and, therefore, a new guest customer is created and his shopping cart is empty. So in the end, I will see an empty shopping cart for the "https://www" domain.

The solution for this will be to set the "WWW prefix requirement:" to "Pages should have WWW prefix" in the Administration -> Configuration ->Settings -> General settings -> SEO Settings tab.

Hope this helps!

8 years ago

chrisADK wrote:
Hi,
OH OK thanks.
Is this the case for all the NOP-Templates plugins?
Will uninstalling it lose any of the configuration settings I did or will they still be in the database?

Chris


Hi Chris,

No, the Ajax Filters plugin is the only one which needs to be re-installed if you move your database.

Unfortunately, re-installing the plugin will erase the Ajax Filters configuration settings. You will need to setup the plugin again.

Hope this helps!

8 years ago

kivicom wrote:
Hello,

I have a question, about how to get new products to be displayed in the footer?
Currently that column is empty, but new products have been added.

Thank you!


Hi,

In 3.70 version you should manually select which products will be shown as 'New products'. You can do that by going to you Administration -> Catalog -> Products -> Manage products and click Edit on the products that you want to mark as new. At the bottom of the Product Edit page you will find a "Mark as new:" setting.

Hope this helps!

8 years ago

chrisADK wrote:
Hi,
In process of making a copy of our database on the development server in preparation copying to the live site.
Getting this error when running the generate scripts function in SQL Server Management Studio.

Any idea on how to resolve this?
Here is a screen shot.
http://1drv.ms/1U0sS5I


Thanks Chris



Hi Chris,

Our store procedure is encrypted, that is why it cannot be exported. The easiest workaround for this is:

1) Uninstall the Ajax Filters plugin
2) Export your database
3) Import it on your live site
3) Install the Ajax Filters plugin on the new database.

Hope this helps!

8 years ago

hanz wrote:
Hi Hristian,

Thanks for your reply. My mistake, I placed it in the wrong forum. I'm talking about Ajax Filters plugin.

What I mean is following: I have a few products, for instance sweater 1, sweater 2 and sweater 3

I have for instance 2 specifications:

style (men, women, kids)
color (red, white, blue)

Suppose I have the categories:
Home - teamwear - sweaters
Home - women - sweaters

In the first category I want both filters (style and color) to be visible
In the second category I do not need the filter style, (since it's a category for women), so I only want to filter on colors there.

So basically what I want is a setting to disable specific filters per category. Hope it's more clear so, if not please let me know.




Hi Hanz,

There is no built-in feature for excluding certain specifications or product attributes for a given category. However, you can achieve this by slightly modifying the code. Find and open \Plugins\SevenSpikes.Nop.Plugins.AjaxFilters\Views\SpecificationFilter7Spikes\SpecificationFilter.cshtml and after this:

@foreach (SpecificationFilterGroup specificationFilterGroup in Model.SpecificationFilterGroups)
{


place this:

if (Model.CategoryId == 1 && specificationFilterGroup.Name == "Style")
{
    continue;
}


where "1" is the categoryId that you don't want to have the "Style" specification.

Hope this helps!

Bugs
8 years ago

rbeardfinelines wrote:
Unfortunately, that won't work since some of the bundled products are shared among other bundles.

And I'm not sure how it would be displayed. I'm guessing the banner that NSC creates wouldn't be displayed. Since the components of the kits are not displayed.


Hi,

The countdown timer wouldn't be displayed, it needs to be on a product which is visible on the page ( the bundled products are not visible on the parent product page ).

Hope this helps!

8 years ago

mbreton wrote:
Hi,

I'm using nop 3.7 using the Nitro theme with the included plugins from nop-templates.com. I don't know which settings I changed but now:

1. I can't see anymore the Price Range filter.
2. I can't see the Attributes and Specification filters.
3. The Infinite Scrolling is Enabled but I still have the Pager at the bottom of the page.

After a couple of hours of research I just don't know what wrong and where I changed something who affected the Ajax Filters Plugin.

I can give you the admin credentials and you'll able to see what happen.

Thanks


Hi,

Did you manage to fix your problem?

If not, please submit a ticket to our system providing admin credentials to your site, so that we can check what is wrong.

Thanks.

gwest wrote:
Also can't configure any of the seven spikes widgets.


Hi,

Could you please add a few empty spaces in the Global.asax file in order to trigger the full site restart.

Thanks.