I'm having trouble getting the Nop JCarousel to work using the "Also Purchased Products" data source type.
The Nop JCarousel works fine with other datasource types such as "Recently Viewed Products" or "Related Products". I have changed the data source type to these others and Nop JCarousel displays as expected. However, if I change it back to use the "Also Purchased Products" data source type, it does not display.
I double checked to make sure the data is there for the product I'm testing. When I add the HTML Action to the page as follows...
@Html.Action("ProductsAlsoPurchased", "Catalog", new { productId = Model.Id })
... This works.
So I'm at a loss here as to why the Nop JCarousel will not display the "Also Purchased Products".
I'm using version 3.0.
Any known issues with this?
I'm testing the Nop Ajax Filters in IE, Google Chrome, Mozilla Firefox, etc and noticed that the AjaxLoader.gif is not animated (does not spin) in Google Chrome browser.
Are FeaturedProducts available in version 3.0?
I have featured products in a category, but they do not display.
I'm testing it out and when I step into the code, item.CategoryModel.FeaturedProducts.Count is always equal to zero (0) even when there are featured products.
Below is a code I added.
foreach (var featured in item.CategoryModel.FeaturedProducts)
{
<li>
<a href="@Url.RouteUrl("Product", new { SeName = featured.SeName })" title="@featured.Name">@featured.Name</a>
</li>
}
Is there a relatively easy way to replace the standard left hand navigation with a vertical Nop MegaMenu to display only the top level categories (marked as 'Show on home page')?
My client really likes the Nop MegaMenu, but would like it to work as part of the left navigation instead of the top menu.
Thanks,
Mike
Example: On a category page, if you click on the last button in the pagination and then click any filter item. It displays the "NO RESULTS FOUND" dialog.
I think the Nop Ajax Filters should override the current pagination and begin the filtering process starting with page 1... or at the very least least give a better explanation other than results not found.
Thoughts?
What would be the best way to display a JCarousel inside a tab?
I attempted to do the following in _ProductTabs.cshtml
var relatedProducts = Html.Widget("relatedProducts_jcaroussel").ToHtmlString();
if (!String.IsNullOrWhiteSpace(relatedProducts))
{
divs.Add(new KeyValuePair<string, string>("tab-relatedProducts", relatedProducts));
<li><a href="#tab-relatedProducts">Related Products</a></li>
}
The above was my best guess.
The JCarousel does shows up in the tab, but the formatting (HTML,CSS) is completely messed up.
Any assistance would be greatly appreciated.
Thanks,
~Mike