Hi Chad,
Despending on how you have the featured products module settings configured one of the following 3 stored procs will be executed:
-
Smith_ListFeaturedProducts
-
Smith_ListFeaturedNewReleases
-
Smith_ListFeaturedTopProducts
Open up the stored proc that your store is using and add the following to the where clause:
Archived != 1 and HideProduct != 1
The full where clause should be as follows:
where logicallydeleted <> 1 and Archived != 1 and HideProduct != 1 and featured = 1 and PortalId = @PortalId
We have made this change in the latest cart dev build and it will be available in the next release cart v4.94
Thanks for reporting the issue!