The use of plugins is a great and quick way of getting functions to your site without coding but that brings a lot of risks; like your website going down or even worse slow down a website now these problems can easily be avoided by just writing a line or two of code within your functions.php file.
Recently a new client of mine have a five different plugins to do the following.
add_action( 'woocommerce_after_add_to_cart_button', 'return_policy', 20 );
function return_policy() {
echo '<p id="rtrn">Free shipping & returns. <a href="shipping-returns/">Learn more...</a></p>';
}
for the few that don’t i place id=”rtrn” in the html to show you how to take full CSS control.
so please look for other ways to provide service to your client or clients.
Quick is now never the way.