Save abandoned carts and send automated abandoned cart recovery messages. Get more leads, reduce cart abandonment, and increase sales.
All online stores suffer from shopping cart abandonment. CartBounty helps to save abandoned carts in WooCommerce and send effective abandoned cart reminder messages to recover lost sales.
With thoughtful user experience, built-in efficiency tools and ability to integrate with other systems, CartBounty is a powerful addition to your marketing arsenal.
CartBounty saves and displays all shopping cart activity from the moment a product is added to the cart.
Save your time with automated abandoned cart recovery and focus your energy on the important stuff.
Use CartBounty efficiency tools to increase your chances of getting more recoverable abandoned carts.
Take advantage of abandoned cart email series, message personalization and other great features by upgrading to CartBounty Pro.
CartBounty Dashboard and abandoned cart reports including cart abandonment rate stats and top abandoned products
Abandoned cart list
Automated abandoned cart recovery using WordPress email reminders
WordPress recovery email settings
WordPress recovery email preview
Exit Intent popup settings
General settings
How Exit Intent popup looks like once the user tries to leave the shop
As soon as a product is added to the cart, it is visible to the store administrator in CartBounty abandoned carts. The cart remains anonymous until the user provides contact information from one of the following sources:
As soon as CartBounty has user’s contact information, the anonymous cart is turned into a recoverable cart. After the user places an order, the abandoned cart is immediately removed from the list of abandoned carts.
If you would like to enable Unfinished order recovery, please consider upgrading to CartBounty Pro.
To be considered abandoned, a shopping cart must remain inactive for a period of 60 minutes after the last user activity. If you see a “shopping” status in the CartBounty abandoned cart status column, it means the user is still actively shopping and has not yet abandoned their cart.
Notifications or reminders will only be sent out after the shopping cart is abandoned and the “shopping” status has been removed.
Example. If you’ve configured your first abandoned cart recovery email, text message or Push notification to be sent after 5 minutes, the user will receive it approximately 65 minutes later (i.e., 60 minutes after the cart is abandoned, plus 5 minutes for the configured delay).
Once the cart is abandoned, an automated reminder or a series of multiple reminders over a period can be sent out to the user to remind about items in the shopping cart.
The free version of CartBounty offers a basic solution for sending abandoned cart recovery emails using default WordPress mail server. This recovery option works well if you have a small to medium number of abandoned carts.
Upgrade to CartBounty Pro to setup and send automated abandoned cart recovery Push notifications, emails and SMS text messages using ActiveCampaign*, GetResponse*, MailChimp* or BulkGate*.
Carts that cannot be identified are classified as anonymous since the visitor has not provided any contact information. In this scenario, the user has added one or multiple items to the cart but has not provided any contact information that can later be used to recover it.
Perhaps you are curious as to why someone would want to save them? Here are a couple of reasons:
To keep track of live shopping cart activity and get a better understanding of what’s happening in your store.
To identify the most popular products that are being added to carts.
To gather information about the potential revenue from abandoned carts.
CartBounty settings allow you to disable anonymous carts or allow them only from specific countries.
Exit Intent technology is a smart way of monitoring user behavior, including mouse movements, scroll speed, and direction, to determine when a user is about to leave the website. When this behavior is detected, a popup appears to engage the user. The purpose of the Exit Intent popup is to motivate the user to complete their purchase or provide their contact information which later can be used for abandoned cart recovery.
Learn more about Exit Intent Technology and the principles of Mobile Exit Intent popup.
The public-facing components of CartBounty, such as the Exit Intent popup and WordPress recovery emails, can be easily customized using the plugin’s settings. However, if you need more advanced customization options, you can use the pre-built CartBounty templates or take advantage of the available actions and filters.
You will find all available template files inside /plugins/woo-save-abandoned-carts-pro/templates folder. When you open these files, you will notice they all contain hooks that allow you to add, edit or remove content without the need to edit template files themselves. This method protects against plugin upgrade issues, as the template files can be left completely untouched.
Please copy the template file you require to your active theme to keep your customization intact after plugin updates. You can copy them to either one of these locations:
Now you can edit your copied template file and it will override default CartBounty template file.
Along with the customization options available in plugin settings, CartBounty also allows the use of different hooks for advanced customization. These hooks are an excellent way if you are looking to alter or extend the features of CartBounty without modifying the core files of the plugin.
Below you will find a list of hooks available in CartBounty alongside different examples. When using these actions and filters to modify the plugin, please add your code in the functions.php file of your theme.
General hooks
Filters:
Here is an example how to change the From email that sends out notification emails using “cartbounty_from_email” filter. Please add it to your theme’s functions.php file:
function change_from_email( $html ){ return '[email protected]'; } add_filter( 'cartbounty_from_email', 'change_from_email' );
Example how to customize default waiting time after which the cart is considered abandoned using “cartbounty_waiting_time” filter from 60 minutes (default time) to 30 minutes. Add it to your theme’s functions.php file:
function change_waiting_time( $minutes ){ return 30; //Minimum allowed time is 20 minutes } add_filter( 'cartbounty_waiting_time', 'change_waiting_time' );
Example how to display abandoned cart product prices excluding taxes:
add_filter( 'cartbounty_include_tax', '__return_false' );
Exit Intent hooks
Exit Intent template contains different actions and filters that allow you to create new, edit, replace, or remove existing content including the main image in Exit Intent window.
Actions:
Filters:
Here is an example how to add additional subtitle after the main title using our “cartbounty_exit_intent_after_title” action hook. Please add it to your theme’s functions.php file:
function add_extra_html_after_title() { echo "<p>Additional subtitle here...</p>"; } add_action('cartbounty_exit_intent_after_title', 'add_extra_html_after_title' );
Example how to change the main image using a filter:
function modify_image( $html ){ return '<img src="http://www.link-to-your-custom-image-here..."/>'; } add_filter( 'cartbounty_exit_intent_image_html', 'modify_image' );
Example how to change the main title using a filter:
function modify_title( $html ) { $custom_title = 'Your text here...'; return preg_replace('#(<h2[^>]*>).*?(</h2>)#', "$1 $custom_title $2", $html); } add_filter( 'cartbounty_exit_intent_title_html', 'modify_title' );
Example how to change the description using a filter:
function modify_description( $html ){ $custom_description = 'New description here...'; return preg_replace('#(<p[^>]*>).*?(</p>)#', "$1 $custom_description $2", $html); } add_filter( 'cartbounty_exit_intent_description_html', 'modify_description' );
WordPress email hooks
WordPress abandoned cart reminder template uses multiple actions and filters which can be used to alter the contents an appearance of the email.
Actions:
Filters:
Example how to add additional content right before the main title in WordPress recovery reminder email:
function cartbounty_automation_add_extra_title(){ esc_html_e( 'Additional content before main title', 'woo-save-abandoned-carts' ); } add_action( 'cartbounty_automation_before_title', 'cartbounty_automation_add_extra_title' );
An example how to use a filter to alter the main title:
function cartbounty_alter_automation_title( $title ){ return '<h1 style="font-size: 60px; padding-bottom: 30px;">'. __('My new title', 'woo-save-abandoned-carts') .'</h1>'; } add_filter( 'cartbounty_automation_title_html', 'cartbounty_alter_automation_title' );
Example how to replace existing button name from “Complete checkout” to “Return to cart”:
function cartbounty_alter_automation_button( $button ){ return str_replace( 'Complete checkout', __('Return to cart', 'woo-save-abandoned-carts') , $button); } add_filter( 'cartbounty_automation_button_html', 'cartbounty_alter_automation_button' );
How to change the default footer address. By default, it is taken from WooCommerce store address you have entered, but you can change it using a filter:
function cartbounty_alter_automation_footer_address_1( $address ){ esc_html_e('First address line...', 'woo-save-abandoned-carts'); } add_filter( 'cartbounty_automation_footer_address_1', 'cartbounty_alter_automation_footer_address_1' ); function cartbounty_alter_automation_footer_address_2( $address ){ esc_html_e('Second address line...', 'woo-save-abandoned-carts'); } add_filter( 'cartbounty_automation_footer_address_2', 'cartbounty_alter_automation_footer_address_2' );
If you have noticed unusual amounts of multiple new anonymous carts being left almost at the same time, from one country and consisting of a single product, it might be that they are left by bots who are visiting your store.
Bots can be divided into two groups – good ones and bad ones.
Harmful bots are the ones that might be responsible for leaving new anonymous carts on your website. While this is not dangerous, it can be frustrating and annoying. Here are three solutions that will help you to deal to with them:
In addition, the Pro version allows you to select if guests from specific countries should be able to leave anonymous carts thus making sure that bots coming from countries you do not sell to are not able to leave anonymous carts.