Summary, want Manufacturer to show. Want only Category, not multiple subcategories; only Category is populated, rest are NULL.
I'm seeing some strange behavior in our Co-op Partners source. I can not get the Manufacturer field to show. Some of the items have that field and some do not. If I enter a search to display only an item with the Manufacturer field I still can not get it to display. We are seeing multiple sub-category fields but none of the items have these populated (only Category).
I tried adding custom css, but when I view source for the webpage there is css in the code overriding my custom css, I do not know where this is coming from. Shown below, this is what is messing up our cols.
<style type="text/css">
<!--/* <![CDATA[ */
[ cut code from global css for brevity ... ]
[ cut code from source css attempting to fix our problem ... ]
/* ]]> */-->
</style>
<style type="text/css">
<!--/* <![CDATA[ */
table .ManufacturerCol, table.searchResultsTable .ManufacturerCol, table#orderItemsTable .ManufacturerCol, table#splitItemsTable .ManufacturerCol { display: none; }
table .SubCategoryCol, table.searchResultsTable .SubCategoryCol, table#orderItemsTable .SubCategoryCol, table#splitItemsTable .SubCategoryCol { display: table-cell; }
table .CategoryCol, table.searchResultsTable .CategoryCol, table#orderItemsTable .CategoryCol, table#splitItemsTable .CategoryCol { display: table-cell; }
table .SubCategory2Col, table.searchResultsTable .SubCategory2Col, table#orderItemsTable .SubCategory2Col, table#splitItemsTable .SubCategory2Col { display: table-cell; }
table .CodeCol { display: none; }
/* ]]> */-->