protected virtual ProductCatalog InternalGetCatalog()
{
if (!string.IsNullOrEmpty(this.CatalogName))
{
return CatalogHelper.GetCatalog(this.CatalogName);
}
return null;
}
What seems to be happening is taht at some point our site is changing
"catalogname" from our catalog which is "Test Catalog" to "Products".
We tried changing "this.catalogname" to "Test Catalog" and our item still
doesn't add to the cart instead it just redirects to the root catalog page.
Can anyone help with this?
Thanks,
Blake