Hi,
For the quantity input, you probably want to hide it. There is a setting to display/hide the quantity input in your menu item settings, under the "products options" tab.
You can add CSS to remove the wishlist button and remove the links from being printed :
#hikashop_category_information_menu_550 hikawishlist {
display: none;
}
@media print {
#hikashop_category_information_menu_550 a:after { content: "" !important; }
}
And to display the stock, you can add such CSS:
.hikashop_product_stock_count {
#hikashop_category_information_menu_550 display: inline !important;
}
www.hikashop.com/support/documentation/1...ize-the-display.html