Title: Side cart hooks
Last modified: January 20, 2021

---

# Side cart hooks

 *  [fizzers](https://wordpress.org/support/users/fizzers/)
 * (@fizzers)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/side-cart-hooks/)
 * Hey Xootix, thanks for your great work.
 * I was wondering if it’s possible to use/reference custom hooks with your Side
   cart plugin?
 * I have successfully used the code snippet below to display [this dynamic box](https://ibb.co/SVD20dp)
   on the cart page, for example.
 * If I can get this to display on the side cart with Pro only I’ll happily make
   the upgrade.
 *     ```
       // Woocommerce - cart page notification
       add_action( 'woocommerce_before_cart_table', 'cart_page_notice' );
   
       function cart_page_notice() {
       	$min_amount = 20; //This is the amount of your free shipping threshold. Change according to your free shipping settings
       	$current = WC()->cart->subtotal;
       	if ( $current < $min_amount ) {
       		$added_text = '<div class="woocommerce-message">Spend  ' . wc_price( $min_amount - $current ) . ' more to get fast & free shipping<br/>'; // This is the message shown on the single product page
       		$return_to = wc_get_page_permalink( 'shop' );
       		$notice = sprintf( '%s<a href="%s">%s</a>', $added_text, esc_url( $return_to ), 'Continue shopping</div>' ); // This is the text shown below the notification. Link redirects to the shop page
       		echo $notice;
       	}
       }
       ```
   
    -  This topic was modified 5 years, 6 months ago by [fizzers](https://wordpress.org/support/users/fizzers/).
    -  This topic was modified 5 years, 6 months ago by [fizzers](https://wordpress.org/support/users/fizzers/).
    -  This topic was modified 5 years, 6 months ago by [fizzers](https://wordpress.org/support/users/fizzers/).
    -  This topic was modified 5 years, 6 months ago by [fizzers](https://wordpress.org/support/users/fizzers/).

The topic ‘Side cart hooks’ is closed to new replies.

 * ![](https://ps.w.org/side-cart-woocommerce/assets/icon-256x256.gif?rev=3217170)
 * [Side Cart Woocommerce | Woocommerce Cart](https://wordpress.org/plugins/side-cart-woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/side-cart-woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/side-cart-woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/side-cart-woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/side-cart-woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/side-cart-woocommerce/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [fizzers](https://wordpress.org/support/users/fizzers/)
 * Last activity: [5 years, 6 months ago](https://wordpress.org/support/topic/side-cart-hooks/)
 * Status: not resolved