This file contains hidden or 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 | |
/* | |
* | |
* Customized add to cart button for WooCommerce | |
* © mahdyar.me ([email protected]) | |
* | |
* Add this to the end of your template's "functions.php" file (without "<?php" at the begining of this file) | |
* | |
*/ |
This file contains hidden or 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
var allInputs = document.getElementsByTagName("input"); | |
for (var i = 0, max = allInputs.length; i < max; i++){ | |
if (allInputs[i].type === 'checkbox' && allInputs[i].id.endsWith('_8')) | |
allInputs[i].checked = true; | |
} |
OlderNewer