Hi @joaopegb
Please follow these steps:
1. Hide the “continue shopping” button first https://www.screencast.com/t/5ysdq0linig
2. Add below code to current-theme (or child-theme) / functions.php
add_filter( 'woofc_below_bottom_content', 'woofc_your_bottom_text', 99 );
function woofc_your_bottom_text( $text ) {
return '<div style="text-align: center; color: white; margin-top: 20px">Free Shipping On All Orders</div>';
}
And the result https://www.screencast.com/t/EDe3zxuB
This works great, thanks a lot.
Meanwhile I was wondering if this would work also to add a small icon right before the text similar to this: https://ibb.co/K9VjFXJ
Thanks
@joaopegb
Please change above code to:
add_filter( 'woofc_below_bottom_content', 'woofc_your_bottom_text', 99 );
function woofc_your_bottom_text( $text ) {
return '<div style="text-align: center; color: white; margin-top: 20px"><i class="woofc-icon-cart15"></i> Free Shipping On All Orders</div>';
}
And the result https://www.screencast.com/t/OWGl5DwJXnp