Close

Profile: Boyko

Avatar

User posts

10 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

10 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

10 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

10 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

10 years ago

hayco83 wrote:
Hi,

I'm using NOP Playground 3.3 with no other 3rd party plugins or code.

I'm on a shared hosting plan.

I'm having app pool restarted several times and then stopped.

My hosting company, Arvixe is telling me this is due to either the code or my website is hitting the memory limit (600MB)

Do you have any calculation of memory consumption of the Playground theme and if the 600MB limit is really not sufficient to run it.

Also is there any way that I can know for sure what the real reason behind this app pool restart?


Thanks


Hi Hayco83,

The memory consumption does not depend on the theme but on the data (products/categories) you have in your store. Please read this post about memory consumption in nopCommerce.
The new version of nopCommerce 3.4 will have a lot of performance and memory improvements and it might need less memory but if you want to be sure you won't have any problems my advice is to not use a shared hosting. Here is a thread in the nopCommerce forum for the new improved version that will be released in a couple of weeks.

Thanks

10 years ago

minu102 wrote:
Please give us solution . ... It is very rigid . we completely wasted our money for this nopcommerce project.


Hi minu102,

Unfortunately we can't help you if you have modified the namespaces as this will require recompilation of the whole codebase (not to mention that this will be a lot of extra work that will break future upgrades and bug fixes). I don't know your reasons for changing the namespaces but this is definitely a bad idea as there is no easy way to do upgrades to new version of nopCommerce and new versions of any plugins (even if you have the source code you need to rewrite them as they are already using the default nopCommerce namespace).

p.s: I can see that you have a trial version of the Ajax Filters.

Thanks

10 years ago

untiedshoes wrote:
Hi,

Using anywhere sldiers 3.2 - have used previous versions and this one with no issues until now.

Using the sliders in a multi-store environment, the sliders are not split via store. They are set to each store in the admin, but the front end of each store all show the same slider.

The sites are setup correctly by the way - I was the first person to run a live multistore nopcommerce development.

By the way, using nop 3.2.

Any ideas?


Hi untiedshoes,

Can you update to the latest version of the Sliders for 3.2 as described in this post?

Thanks

10 years ago

minu102 wrote:
I have changed   "Nop"  namespace to "xyz" namespace  in my  nopcommerce project


Hi minu102,

In that case there is nothing you can do to use the Ajax Filters plugin in your project. Our plugins are nopCommerce plugins and they are intended and built to be used in nopCommerce.

Thanks