Hi,
Some of these changes are very specific to your needs and would be outside the scope of support.
1) If I can see a link/wp login you might be able to move this with jQuery.
2) If no rating is provided the stars will not show. To get the display to work you would need to edit the PHP function sf_get_product_stars()
located here: /themes/uplift/swift-framework/core/sf-woocommerce.php
.
3) Please add this to Theme Options => Custom CSS
.woocommerce div.product .summary h3.price {
font-weight: bold;
}
4) Please add this to Theme Options => Custom CSS
p.stock.in-stock {
padding-left: 15px;
position: relative;
}
.woocommerce div.product p.stock:before {
content: " ";
width: 5px;
height: 5px;
position: absolute;
top: 10px;
left: -3px;
background-color: #eabe12;
}
.woocommerce div.product p.stock:after {
content: " Ship with 24 hours";
}