Close

Profile: hristian.dimov

Avatar

User posts

9 years ago

ehubcap wrote:

I'm implemented this method for my custom themes and plugins CSS and it work perfect. When I activate the Nopcommerce bundling, these files are left "unbundled" which is not desirably.
How can I get these Css files included in the bundling?.
As an aside note, also i want to use Grunt for rewrite a rule to route them to a Blob Storage
any advise on feasibility?
Help please
Thank you
Jose Plunkett
ehubcap 


Hi,

If you want to benefit from the bundling, you need to change a little bit the provided solution.

Change this:

@Html.NopCssFiles(this.Url, ResourceLocation.Head)
    <link type="text/css" rel="Stylesheet" href="@Url.Content("~/Themes/DefaultClean/Content/styles.custom.plugins.css")" />
    @Html.NopScripts(this.Url, ResourceLocation.Head)


To be this:

    @{
        Html.AddCssFileParts("~/Themes/DefaultClean/Content/styles.custom.plugins.css");
        
    }
    @Html.NopCssFiles(this.Url, ResourceLocation.Head)
    @Html.NopScripts(this.Url, ResourceLocation.Head)


Hope this helps!

9 years ago

keremdemirer wrote:
It only happens after deployment and disappears after a while. But this issue causing big problems for our continious integration. It delays our applications warm up times about 2-3 minutes.

We got to ressolve this problem.


Hi,

could you please tell us what are the steps of the deployment? Do you stop your site before the deploy? And do you deploy only the changed files or the whole site? Please provide as much information as you can, so that we can resolve this problem faster.

Looking forward to your reply!

9 years ago

keremdemirer wrote:
Hello,

We get this error after every deployment,  Do you have a workaround to prevent this?

Thanks,


Hi,

it seems that the file is locked for some reason. Have you tried the solution from the post above with the restarting of the application?

9 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!

9 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
9 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!

9 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!

9 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!

9 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!

9 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!