Close

Profile: Boyko

Avatar

User posts

11 years ago

vaheyev wrote:
Thank you for your quick reply.
Yes, of course I enabled the Manufacturers when setting up the mega menu plugin.
I wonder why I cannot see it in the menu


Hi vaheyev,

Could you please send us an email with your web site and administration credentials, so that we can take a look and see what is wrong?

Thanks

11 years ago

vaheyev wrote:
Hello there,
Because I have an art gallery store, I changed the word "Manufacturer" into "Designer" in the Admin CMS section. Nop gave us this option. However, manufacturers are not being displayed in my mega menu. What I think as personal opinion that there is a mapping issue here. Something in the mega menu is searching the word of "Manufacturer" which I changed it to "Designer". Can somebody help me in this issue? Where this mapping is carried on?
Best regards,
Vahe


Hi Vahe,

You have basically changed the resource only, which have nothing to do with the mega menu. It directly gets all the manufacturers from the database. Are you sure you have enabled the Mega Menu to show the manufacturers from the Mega Menu settings page?

Thanks

11 years ago

chroni wrote:
One Feature would be great:
We sell organic fashion for kids. T-shirts, Skirts etc.. have all different colours and the right colour is  important at the product level but if want to search for colors there are awful a lot possibilities of different "blues" and "reds".

So grouping of colours with kind of colorbar woule be great  (Group of blue colors,....) where all shades of blue are selected.

I hope it is unterstood what i mean.

Greetings
chris


Hi Chris,

Have you seen this on any existing web site, so that you can provide a link for us to see it in action?

Thanks

11 years ago

unclescrooge wrote:
Hello

We have installed Nop Anywhere Sliders 3.30 in our webstore using NopCommerce 3.30 and furniture theme. The category tab shown in the manual for this plug in are not found in our webstore administration page, and we can not add any sliders because of this problem.

We need help to understand what is wrong with the plug in?

Thank you!

Best regards

Magnus


Hi Magnus,

The category tab is no more needed as we introduced very powerful Condition in nopCommerce 3.3.
You need to add a Category condition in order to limit the Slider to a specific category.

p.s: Please don't duplicate posts and emails.

Thanks

11 years ago

Oakstone wrote:
We are using the jcarousel to display products on the home page and we like how the product title is static about the image for Featured Products (http://themes.lighthouse.nop-templates.com/). Is there a way to do display the product title with the carousel?

I'm assuming some editing needs to be done with jcarousle.cshtml. No way just to do it with CSS.

Thanks.


HI Oakstone,

Yes, if you change the markup of the JCarousel.cshtml to be similar to the product box one and have the same styling then it should work the same way. Basically the title needs to be outside the details div (that contains the information shown on hover) and the title should have the same styling as the title in the product box.

Hope this helps!

Thanks

11 years ago

gnikspam wrote:
I use nopkommerche 3.30

I have not worked correctly ajaxcart

Could not put a plugin for a particular store.

I downloaded the new version of the plugin

Then run the script and got an error


Hi gnikspam,

You need to run the upgrade script only if you are upgrading your database from version 3.2 to version 3.3.
If you want to update (not upgrade) a particular plugin to the latest version you need to follow these steps described here.

Thanks

11 years ago

gnikspam wrote:
Hi

I run the script 7Spikes_upgrade.sql

I receive an error

Msg 207, Level 16, State 1, Line 2
Invalid column name 'ConditionId'.

Can you help me?

Senks


Hi Senks,

Can you provide more information about why you are running the upgrade script and from which version you want to upgrade i.e 3.1 to 3.2 or 3.2 to 3.3?

Thanks

well wrote:
I have only changed variables, becouse in nopCommerce are used variables _something for services


Hi well,

If you don't need to create a property then you can directly assign your variable in the constructor.
You code should be like this:

private readonly ShippingSettings shippingSettings;


Then in the constructor of the CatalogController add this line:

shippingSettings = EngineContext.Current.Resolve<ShippingSettings>();


That is all!

Thanks

Hi well,

You should assign the private field _shippingSettings before returning it. The change is in bold. Also it should not be readonly as you won't be able to assign it.

private ShippingSettings _shippingSettings;

        public ShippingSettings ShippingSettings
        {
            get
            {
                if (_shippingSettings == null)
                {
                    _shippingSettings = EngineContext.Current.Resolve<ShippingSettings>();
                }

                return _shippingSettings;
            }
        }


Then you just need to the ShippingSettings property in your code.

Thanks

11 years ago

dincaykirtasiye wrote:
I have customized Electronis Theme in 3.20 version..
After upgrade to nop 3.30 my customized theme did not work on 3.30..
for example Add to cart button does nothing now..What should I do?


HI dincaykirtasiye,

The default installation of the Electronics theme for nopCommerce 3.3 should work just fine.
But if you have made any modifications in 3.2 then you should merge them in the 3.3 version of the theme.

Thanks