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
// Place into your Inspect Console to Follow All on Page | |
$('.not-following .follow-button').trigger('click'); | |
// Place into your Inspect Console to UnFollow All on Page | |
$('.following .follow-button').trigger('click'); |
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
<?php | |
/** | |
* WooCommerce Bottle Deposit | |
* -------------------------- | |
* Add bottle deposit fee to checkout | |
*/ | |
function woo_add_bottle_deposit_fee($cart_object) { | |
global $woocommerce; | |
$deposit = 0; |
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
$('button[class^="UserFollowButton"]:not(.dim)').trigger('click'); |