Close

Profile: JRon

Avatar

User posts

Hi there
I am setting up the plugin but I am having some trouble, this is the code I get on my site log when trying to access mysite/facebook/store

I am using Nop 3.7

[code]   System.MissingMethodException: Method not found: 'System.Collections.Generic.IEnumerable`1<Nop.Web.Models.Catalog.ProductOverviewModel> Nop.Web.Extensions.ControllerExtensions.PrepareProductOverviewModels(System.Web.Mvc.Controller, Nop.Core.IWorkContext, Nop.Core.IStoreContext, Nop.Services.Catalog.ICategoryService, Nop.Services.Catalog.IProductService, Nop.Services.Catalog.ISpecificationAttributeService, Nop.Services.Catalog.IPriceCalculationService, Nop.Services.Catalog.IPriceFormatter, Nop.Services.Security.IPermissionService, Nop.Services.Localization.ILocalizationService, Nop.Services.Tax.ITaxService, Nop.Services.Directory.ICurrencyService, Nop.Services.Media.IPictureService, Nop.Core.IWebHelper, Nop.Core.Caching.ICacheManager, Nop.Core.Domain.Catalog.CatalogSettings, Nop.Core.Domain.Media.MediaSettings, System.Collections.Generic.IEnumerable`1<Nop.Core.Domain.Catalog.Product>, Boolean, Boolean, System.Nullable`1<Int32>, Boolean, Boolean)'. at SevenSpikes.Nop.Plugins.FacebookShop.Controllers.FacebookShopController.PrepareProductOverviewModels(IList`1 products) at SevenSpikes.Nop.Plugins.FacebookShop.Controllers.FacebookShopController.PrepareHomePageProducts(FacebookCatalogPagingFilteringModel command) at SevenSpikes.Nop.Plugins.FacebookShop.Controllers.FacebookShopController.Index(FacebookCatalogPagingFilteringModel command) at lambda_method(Closure , ControllerBase , Object[] ) at System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters) at System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) at System.Web.Mvc.Async.AsyncControllerActionInvoker.<BeginInvokeSynchronousActionMethod>b__39(IAsyncResult asyncResult, ActionInvocation innerInvokeState) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult`2.CallEndDelegate(IAsyncResult asyncResult) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResultBase`1.End() at System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeActionMethod(IAsyncResult asyncResult) at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3d() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass33.<BeginInvokeActionMethodWithFilters>b__32(IAsyncResult asyncResult) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult`1.Call

6 years ago

https://www.nop-templates.com/boards/topic/3202/adding-increment-and-decrement-buttons-to-quantity-on-the-product-page

Bugs
6 years ago

I have now fixed this problem by adding {overflow: hidden} to the parent wrapper.

Thank you for your help, The only reason I listed this as a bug was because I could reproduce the problem on your demo page, but that turned out to be something else, very weird.

Bugs
6 years ago

Thats it, thats the problem.

Why do you think it´s broken in Android browser but working fine in other mobile browser?

Bugs
6 years ago

Yes, sorry I forgot.

My site is www.ronning.is

Bugs
6 years ago

Hi, your demo page works fine now in My Samsung Internet browser, both http://demos.nop-templates.com/ and http://demos.nop-templates.com/?demo=jcarousel where broken earlier today but are fine now, what did you change?

Bugs
6 years ago

When I remove the carousel from my website the problem is fixed, here is a screenshot from http://demos.nop-templates.com/?demo=jcarousel It´s Samsung Internet browser, Galaxy S7 edge. You can see how the header has stretched to the right.

Bugs
6 years ago

Hi there, there is something wrong with how the carousel works in mobile Android browser and Samsung Internet browser (based on the Android browser)

You can reproduce by viewing the demo page using either Android browser or Samsung Internet browser (site width get´s stretched out)

This works fine in iPhone and mobile Chrome, but Android browser is very popular and I need this fixed.

Thank you so much for your help, the problem has been solved, the problem was with a missing } - I thought I had reviewed all my css files but found the error after double checking now.

Thanks for the reply, I have "fixed" the problem for now by changing the AddCssFilePart code from:
Html.AddCssFileParts("~/Plugins/SevenSpikes.Nop.Plugins.PluginName/Themes/" + Model.Theme + "/Content/PluginStyles.css");

to:

<link rel="stylesheet" href="~/Plugins/SevenSpikes.Nop.Plugins.PluginName/Themes/MyTheme/Content/PluginStyles.css" />

I need to do some digging in my code to find out what went wrong, I am running two NOP 3.7 websites,both running a modified version af the Alfresco theme, One works fine but the other one has this problem of not adding the plugin css files when bundling, do you have any idea why it would be working on one but not the other, is there a script I should look into to find out where the difference is?