Are you building a simple Woocommerce store using OceanWP? I have a simple store where I just want the short description area on top without the Description, Additional Information and Reviews tabs.
The easiest way to do that is to hide those sections using a bit of css.
In WordPress go to Appearance/Customize/Custom CSS/JS and add this piece of css.
.woocommerce div.product .woocommerce-tabs {
display: none;
}