By placing an informative WooCommerce infobox below the “Add to Cart” button, you’ll enhance your WooCommerce product pages.
// Add Info Boxes under Add to Cart
function sf_add_to_cart_info_boxes(){
echo '';
echo '';
echo '';
echo 'Need fast shipping?
';
echo 'Select the Express Service, and the shipping will be completed within 24 hours from project approval.
';
echo 'Read more';
echo '';
echo '';
echo '';
echo '';
echo '';
echo 'How to place an order?
';
echo 'See the detailed step-by-step process for placing an order in our store.
';
echo 'Read more';
echo '';
echo '';
}
add_action( 'woocommerce_after_add_to_cart_button', 'sf_add_to_cart_info_boxes', 25 );
Read the full article: Add to cart under WooCommerce info box
WordPress Snippet