Close

Profile: Support

Avatar

User posts

Bugs
12 years ago

[email protected] wrote:
the login page looks ok in chrome, but not in IE.


Many thanks for pointing this out. It is fixed now. Please update the styles.css of the Electronics theme from the latest package.

Best Regards,
Nop-Templates Support Team

Bugs
12 years ago

embryo wrote:
OK, I'm back to work on this site today. I enabled the forum and added some forum groups and forums, but it isn't styled well at all. Something isn't right...
Ideas??

Thanks,
Steve


Hi Steve,

Thank you for reporting this! The new css for 2.65 for the forum was missing. We added it  band you need to download the theme package again and update the Theme\Electronics\Content\styles.css file with the new one. We checked the login page and it seems to be fine. Please let us know if you have any problems with the latest css.

Best Regards,
Nop-Templates Support Team

Bugs
12 years ago

gkennedy1 wrote:
I'm using the 2.65 fashion theme.
I think the Footer.cshtml view should be under the Common folder to match the core views. I think this moved in either nop 2.5 or 2.6.
This also means that _Root.cshtml needs to reference it like this @Html.Action("Footer", "Common")

Greg


Hi Greg,

Well spotted! It actually does exactly the same but when used as a partial view it needs to be in the Shared folder otherwise it won't be found and that's why it is in the Shared folder. We will refer to it via the controller and the action and move it to the Common folder for consistency and also this way you can use the Model in the view.

Many thanks!
Nop-Templates Support Team

12 years ago

gkennedy1 wrote:
I see what I've done now.
I already had the ultimate collection of plugins installed so I didn't copy them over from the theme zip. The plugins in the theme zip contain the additional widget zones in SupportedWidgetZones.xml and AdditionalSupportedWidgetZones.xml.


Hi gkennedy1,

Yes, the plugins with the Ultimate plugin collection doesn't contain the Fashion theme folder, so it defaults to the DarkOrange one, which doesn't have the additional widget zones for the Fashion theme.
You should add all the plugins from the Fashion theme package to replace the ones from the ultimate plugin collection.

Thanks

[email protected] wrote:
Hey there, had your plugin wokring perfectly but now its reporting the following.

A plugin with 'SevenSpikes.Core' system name is already defined

I have checked and the plugin folders are in there once and listed in the plugins.txt file only once...

Anyone else had this?

S


Hi Stephen,

We haven't seen this error before. Which version of nopCommerce do you use? When exactly do you get this error?

Thanks

Bugs
12 years ago

joster wrote:

And the site still loads in a browser with no problem..I can browse to categories, no problem..search with no problem, add items to cart with no problem, etc..etc..etc...

However, if I click on Login, or Register, or Shopping Cart..I get this:


Internet Explorer cannot display the webpage



Hi Joster,

So the problems are with these pages - Login, Register and Shopping Cart.
Can you swith the custom errors off, so that we can see what is the problem.
You can do this by modifying your Web.config file by replacing RemoteOnly with Off:
<customErrors defaultRedirect="errorpage.htm" mode="RemoteOnly">
to
<customErrors defaultRedirect="errorpage.htm" mode="Off">

Please post the error that you get here or send us an email to support at nop-tempaltes.com. We will request access to your web site to see what is wrong.

Best Regards,
Nop-Templates Support Team

Bugs
12 years ago

joster wrote:

Again, I am not sure what you mean by "modify your Global.asax file will fix this"
In what way does it need modification? What should it look like?


Hi joster,

You simply need to open the file and add some blank spaces at the end and save it.
You can read more about this problem in this post.

Thanks

Bugs
12 years ago

[email protected] wrote:
portrait images in product grid are enlarged outside picture div, so only the top of the image is visible:

.product-grid .item .picture img, .featured-product-grid .item .picture img
{
  width: 150px;
}


Hi,

Yes, you are right there is no need for this css for the images.
But please note that the product boxes also have width set to 150px, which is made on purpose as otherwise you can't fit three products per line in the center column. By default the category images are 125px, so you can increase them up to 150px. If they are bigger only part of the picture is shown, so that all the product boxes are aligned. You can safely remove the width for the images (the code above) and your images won't be enlarged to 150px if they are smaller.

Many thanks again for reporting these issues.

Best Regards,
Nop-Templates Support Team

Bugs
12 years ago

[email protected] wrote:
I think styles.css contains style elements for topmenu, but it should be top-menu.
At least, then the menu renders correct if you disable the CategoryMenu.


Hi,

Thank you for reporting this. It seems that the class has been renamed in nopCommerce 2.65. It is fixed now and you can download the latest version of the theme and update the styles.css file.

Many thanks

12 years ago

IndigoTea wrote:
I'm running into the same error message, after applying the latest 2.6 version of the template. The issue occurs when I use the theme with the folder name of the theme changed (prior to modifying the theme for the custom layout I'm going to implement). I didn't have that issue with the ShopAll theme - is there something I can do to avoid this error message, and still have my customized folder name?


Hi IndigoTea,

We are glad that someone asked this specific questions, which means that you guys are doing the modification of the themes in proper way. Namely to copy it over with a different name and then apply your modifications in the new theme.
You also need to do this for each plugins as all plugins have a Themes folder where the specific views are placed. This way you can have more than a single theme running on the same instance of nopCommerce i.e DarkOrange, Fashion etc. We don't recommend doing this on a production environment but it is very convenient during development and making modifications to a new theme.

Basically you need to add your new name of the Fashion theme i.e FashionNew to the supported theme names setting.
So here is a little background information why you need to do this and how.
The Fashion theme plugin dynamically adds some new data to the model aka productFashionModel via an Action Filter. But we don't want to add this additional information to the product model if we are running a different theme and want it only for the Fashion theme. That's why there is a setting that specifies a list of themes for which we want this additional information.
Here is the setting you need to modify:
SevenSpikesSettings.FashionThemeNames
The value of this setting should be "Fashion" as you can see in the Settings.xml file of the Fashion theme plugin. You need to add your new theme names separated with semicolomn ";". For example:
"Fashion;FashionNew"

When you add your new theme name then you will get the product manufacturers and categories on the product page when running the modified version of the Fashion theme.
We will add a check if the product fashion model is not null, so that you don't get this error on the product page if you forget to add the theme name although you will lose this additional information if you forgot to do so.

Best Regards,
Nop-Templates Support Team