Close

Profile: Support

Avatar

User posts

Hi Haas,

As some of our products use the Catalog service, they will break if you change its constructor. If you want to use any other service or setting you can use property injection, instead of constructor injection. So instead of adding your new service in the constructor, you can do the following:

private IMyService _myService;

        public IMyService MyService
        {
            get
            {
                if (_myService == null)
                {
                    return EngineContext.Current.Resolve<IMyService>();
                }

                return _myService;
            }
        }

Hope that helps. Please let us know if the errors still occur.

brischt wrote:
Hi,

I have an issue with the CloudZoom plugin since I upgraded to version 3.00 of nopCommerce and the Fashion template (at least I think it is related to that upgrade).

My plugin is currently set to "right", so it should display the zoomed picture part on the right hand side which it used to do. However, I now only can see a small pixel line running down on the right side of the overview image. That line moves/changes when I move the mouse over the overview image, so I suppose the plugin is working but the zoom image is loaded into the wrong container.

Can you confirm this issue? Can I adjust that using the selectors setting? What would I have to set it to?

Thank you,

Roland


Hi,

We have fixed this issue. Please download the theme again and replace the ~/Themes/Fashion/Content/CSS/Fashion.css file with the one from the newly downloaded package. Then press Ctrl + F5 in your browser so that you clear its cache.

Best Regards!

Hi Roland,

Thank you for your feedback. We will check and fix this a.s.a.p.

We will let you know when we are done!

Thanks again!

12 years ago

Hi Steve,

Looking at the error I assume that it has been produced by the block of code which tries to upgrade the Nop Customer Reminders plugin. It appears that somehow the [Store] table could not be found. This table is generated by the nopCommerce upgrade script from 2.8 to 3.0 or when on a clean install it is installed by nopCommerce.
Can you please double check whether the [Store] table is present in your database on which you get the [SqlException (0x80131904): Invalid object name 'dbo.Store'.] exception.

The upgrade script should be run only when upgrading from version 2.8 to 3.0. In the second case you have described, when you have a clean install of nopCommerce 3.0 version, you do not need to run the upgrade script, but just install the plugins for version 3.0.

Looking forward to your reply.

Bugs
12 years ago

zjerry wrote:
2.8 upgraded to 3.0
In every modal popup like the one with UE cookies warning or other with terms acceptance during checkout there is no 'X' mark to dismiss the dialog. There is ugly capitalized 'CLOSE' string on white background instead, which is not even right aligned.
Also, in the quick-view the 'X' dialog dismissing button is to bright when mouse-over - you have a feeling that you dont have any buton to click to on the brighter-set monitor.


Hi zjerry,

Thank you for your feedback. The close button on the popups had been broken due to the new jquery,ui.js. We have fixed this, as well as the close button of the Nop Quick View plugin and uploaded them on our site. Please download the theme again and replace the styles.css file of the theme and the Nop Quick View plugin.

Hope that helps!

Hi,

I can see now what you want to achieve. Please edit the new class declaration as shown below:

.order-summary-content .order-details-table {
    width: 100%;
    text-align: left;
}

The line in bold is the newly added one.

Hope that helps!

Hi,

You should remove the //raminder start and  //raminder end as it is not a valid css comment and this breaks the css declaration for the table width. The valid css comment is /* your text here */ You can use it that way.

Thanks!

Hi,

This should work. Have you added it in your ~/Themes/ShopAll/Content/style.css, because now when I open your site I cannot see the

.order-summary-content .order-details-table {
    width: 100%;
}

declaration.

Please let us know how it goes!

Hi,

You should use the @Html.Action("WidgetsByZone", "Widget", new { widgetZone = "home_page_bottom" })

instead of

@Html.Widget("home_page_bottom")

Thanks!

Best Regards!

12 years ago

ckoch1979 wrote:
For two columns it works, thank you! If I do the same procedure for three columns it doesn't. What do I have to do different?



Hi,

The Nop Fashion Theme does not have 3 columns by design. So we have modified the _ColumnsThree layout to look like the _ColumnsTwo. That is why nothing changes when you switch from _ColumnsThree to _ColumnsTwo.

Best Regards!