Hi,
I've got the following error in my log:
Short message: A public action method 'GetSpecification' was not found on controller 'SevenSpikes.Nop.Plugins.AjaxFilters.Pro.Controllers.AjaxFiltersProSearchController'.
The details for the log entry.
Full message: System.Web.HttpException (0x80004005): A public action method 'GetSpecification' was not found on controller 'SevenSpikes.Nop.Plugins.AjaxFilters.Pro.Controllers.AjaxFiltersProSearchController'. at System.Web.Mvc.Controller.HandleUnknownAction(String actionName) at System.Web.Mvc.Controller.<BeginExecuteCore>b__1d(IAsyncResult asyncResult, ExecuteCoreState innerState) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) at System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) at System.Web.Mvc.MvcHandler.<BeginProcessRequest>b__5(IAsyncResult asyncResult, ProcessRequestState innerState) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
The same error is repeated for 'GetManufacturers' and 'GetCategories' any ideas ?
Unfortunately, I had cash. It cant execute the else command. I am not getting any errors but still it can not show the second widget zone. Any other suggestions?
UPDATED: I resolve it. The first widget zone is using the data source for related products so i had to edit the variable
@{
var widget1Html = Html.Action("RelatedProducts", "Product", new { productId = Model.Id });
}
@if (MvcHtmlString.IsNullOrEmpty(widget1Html))
{
@Html.Widget("widgetzone2", Model.Id)
}
else
{
@Html.Widget("widgetzone1", Model.Id)
}
It leaves space because of the place i add it into. I understand perfectly that this isn't caused by Jcarousel :)
And the code you provided fits our needs very well.
Thanks for the help, I appreciate it!
I figure it out, I just had to add a new variable :)
Thanks again!
It would be great if you add category and product mapping for JCarousel. It will make it more flexible.
Hello guys.
I am using Jcarousel for related products in productdetails page. But not every product have related products and it leaves a huge space between the components of the page. My idea is to put there another jcarousel just to fill this emty space on the page, but i want to be shown only if the "Jcarosel for related products" is missing. What would be the right way to achieve that ?
PS: I can add them to a different widgetzone if it will work that way...
That works great, but i've got an error when I try to add a second JCarousel with a different widgetzone for the rest of my categories. It works with ELSE command, but that's not what i want because i have more than 2 Jcarousels that i need to insert
Hello guys,
Is there a way that I can show my Jcarousel products in category of my choice ?