Title: Replace Continue Shopping text
Last modified: February 20, 2021

---

# Replace Continue Shopping text

 *  [joaopegb](https://wordpress.org/support/users/joaopegb/)
 * (@joaopegb)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/replace-continue-shopping-text/)
 * Is there any way I can replace the “Continue Shopping” text below the checkout
   and cart buttons with my own text?
 * I would like to have just simple text (not a button) saying: Free Shipping On
   All Orders
 * Is that possible?
 * Thanks a lot

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [WPClever](https://wordpress.org/support/users/wpclever/)
 * (@wpclever)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/replace-continue-shopping-text/#post-14082046)
 * Hi [@joaopegb](https://wordpress.org/support/users/joaopegb/)
 * Please follow these steps:
 * 1. Hide the “continue shopping” button first [https://www.screencast.com/t/5ysdq0linig](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](https://www.screencast.com/t/EDe3zxuB)
 *  Thread Starter [joaopegb](https://wordpress.org/support/users/joaopegb/)
 * (@joaopegb)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/replace-continue-shopping-text/#post-14087307)
 * 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](https://ibb.co/K9VjFXJ)
 * Thanks
 *  Plugin Author [WPClever](https://wordpress.org/support/users/wpclever/)
 * (@wpclever)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/replace-continue-shopping-text/#post-14087769)
 * [@joaopegb](https://wordpress.org/support/users/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](https://www.screencast.com/t/OWGl5DwJXnp)

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Replace Continue Shopping text’ is closed to new replies.

 * ![](https://ps.w.org/woo-fly-cart/assets/icon-128x128.png?rev=2525054)
 * [WPC Fly Cart for WooCommerce](https://wordpress.org/plugins/woo-fly-cart/)
 * [Support Threads](https://wordpress.org/support/plugin/woo-fly-cart/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-fly-cart/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-fly-cart/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-fly-cart/reviews/)

## Tags

 * [cart](https://wordpress.org/support/topic-tag/cart/)
 * [checkout](https://wordpress.org/support/topic-tag/checkout/)
 * [continue shopping](https://wordpress.org/support/topic-tag/continue-shopping/)

 * 3 replies
 * 2 participants
 * Last reply from: [WPClever](https://wordpress.org/support/users/wpclever/)
 * Last activity: [5 years, 3 months ago](https://wordpress.org/support/topic/replace-continue-shopping-text/#post-14087769)
 * Status: not resolved