1)
.post-type-archive-product .products .product .product-details .posted_in {
display: none;
}
2)
.post-type-archive-product .products .product .star-rating { display: none; }
3)
.woocommerce .single_add_to_cart_button,
.woocommerce .single_add_to_cart_button,
.woocommerce .single_add_to_cart_button.button.alt {
border-color: #fff!important;
color: #fff!important;
background-color: #000!important;
}
/* Hover Styles */
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .single_add_to_cart_button.button.alt:hover {
border-color: #fff!important;
color: #fff!important;
background-color: #000!important;
}
4)
li.parent.wishlist-item {
display: none;
visibility: hidden;
margin-right: -35px;
}
5) Add this to your child theme functions.php
file.
function custom_wishlist_icon() {
return '<i class="fa-heart"></i>';
}
add_filter('sf_wishlist_icon', 'custom_wishlist_icon', 100);
6) No, this is not currently possible when using a variable product.
7) What were you looking to achieve a smaller height for the sticky header?
8) Unfortunately this would require the work of a developer to make this modification, you can request that here: http://www.swiftideas.com/customization/
Thanks.