Hi,
The problem comes from custom CSS you've added to hide the product custom field names:
.hikashop_product_custom_name {
display: none;
}
in the file media/com_hikashop/css/style_custom.css
Remove that code from there and it will display again.
For the "Compare Products" button on listings, which appears when you have products selected for the comparison, you can use such CSS in order to make it sticky:
div#hikashop_compare_zone {
position: sticky;
top: 10px;
z-index: 666;
}
stackoverflow.com/questions/43707076/how...sticky-property-work