Created
November 22, 2017 21:35
-
-
Save ssbalakumar/93e3b388cc110d5a997b075a9240ae8e to your computer and use it in GitHub Desktop.
Wishlist Ajax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header> | |
<a href="#>WISH LIST COUNT : <span>0</span></a> | |
</header> | |
// Button only without ajax loading GIF | |
<a href="http://yoursite.com/product/product-2/?add_to_wishlist=218" rel="nofollow" data-product-id="218" data-product-type="simple" class="add_to_wishlist">Add to Wishlist</a> | |
// Default wishlist button mark up | |
<div class="yith-wcwl-add-to-wishlist add-to-wishlist-218"> | |
<div class="yith-wcwl-add-button show" style="display:block"> <a href="/~developm/anthony/product/product-2/?add_to_wishlist=218" rel="nofollow" data-product-id="218" data-product-type="simple" class="add_to_wishlist"> Add to Wishlist</a> <img src="http://yoursite.com//wp-admin/images/wpspin_light.gif" class="ajax-loading" alt="loading" width="16" height="16" style="visibility:hidden"> </div> | |
<div class="yith-wcwl-wishlistaddedbrowse hide" style="display:none;"> <span class="feedback">Product added!</span> <a href="http://yoursite.com//shop/view/"> Browse Wishlist </a> </div> | |
<div class="yith-wcwl-wishlistexistsbrowse hide" style="display:none"> <span class="feedback">The product is already in the wishlist!</span> <a href="http://yoursite.com//shop/view/"> Browse Wishlist </a> </div> | |
<div style="clear:both"></div> | |
<div class="yith-wcwl-wishlistaddresponse"></div> | |
</div> | |
// JS to be used | |
jQuery( document ).ready( function($){ | |
var update_wishlist_count = function() { | |
$.ajax({ | |
beforeSend: function () { | |
}, | |
complete : function () { | |
}, | |
data : { | |
action: 'update_wishlist_count' | |
}, | |
success : function (data) { | |
$('header a span').html( data ); | |
//do something | |
}, | |
url: yith_wcwl_l10n.ajax_url | |
}); | |
}; | |
$('body').on( 'added_to_wishlist removed_from_wishlist', update_wishlist_count ); | |
} ); | |
// code at the end of functions.php file of your theme | |
function update_wishlist_count(){ | |
if( function_exists( 'YITH_WCWL' ) ){ | |
wp_send_json( YITH_WCWL()->count_products() ); | |
} | |
} | |
add_action( 'wp_ajax_update_wishlist_count', 'update_wishlist_count' ); | |
add_action( 'wp_ajax_nopriv_update_wishlist_count', 'update_wishlist_count' ); | |
add_action( 'wp_enqueue_scripts', 'enqueue_custom_wishlist_js' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment