Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // AJAX
- // =============================================================================
- if ( ! function_exists( 'x_woocommerce_navbar_cart_ajax_notification' ) ) :
- function x_woocommerce_navbar_cart_ajax_notification() {
- if ( get_option( 'woocommerce_enable_ajax_add_to_cart' ) == 'yes' ) {
- $notification = '<div class="x-cart-notification">'
- . '<div class="x-cart-notification-icon loading">'
- . '<i class="x-icon-cart-arrow-down" data-x-icon=""></i>'
- . '</div>'
- . '<div class="x-cart-notification-icon added">'
- . '<i class="x-icon-check" data-x-icon=""></i>'
- . '</div>'
- . '</div>';
- } else {
- $notification = '';
- }
- echo $notification;
- }
- add_action( 'x_before_site_end', 'x_woocommerce_navbar_cart_ajax_notification' );
- endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement