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 | |
/* | |
Plugin Name: GF Stripe Ignore CC Fields | |
Plugin URI: https://gist.github.com/webaware/0488a4bed8d16627af4de52092a356a6 | |
Description: make GF Stripe add-on ignore credit card fields so that they can operate normally for other add-ons | |
Version: 1 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |
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 | |
/* | |
Plugin Name: GF Country USA | |
Plugin URI: https://gist.github.com/webaware/edba921af11f06bdfd5147bab806f591 | |
Description: change United States to USA in Gravity Forms addresses | |
Version: 2 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |
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
/** | |
* change position of Minimim Age question on WooCommerce checkout | |
* @param string $hook_name | |
* @return string | |
*/ | |
add_filter('mininum_age_woo_checkout_hook', function($hook_name) { | |
return 'woocommerce_checkout_order_review'; | |
}); |
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 | |
/* | |
Plugin Name: GF Country as Code | |
Plugin URI: https://gist.github.com/webaware/c5b624416ad4a5641daab54ba9c91a0a | |
Description: save the country subfield of an address as the country code | |
Version: 1 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |
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
// add task to Gruntfile.js | |
shell: { | |
// @link https://github.com/sindresorhus/grunt-shell | |
favicon: { | |
options: { | |
execOptions: { | |
cwd: "./images/favicons" | |
} | |
}, | |
command: [ |
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 | |
/* | |
Plugin Name: EDD Additional API Info | |
Plugin URI: https://gist.github.com/webaware/ccc2a77a8375da9ff02404b1fc033d05 | |
Description: supply additional info in the EDD Software Licensing API update info packet | |
Version: 1 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |
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 | |
//... | |
add_filter('edd_sl_license_readme_response', array($this, 'eddMaybeRestoreFAQ'), 10, 3); | |
/** | |
* maybe restore the FAQ section to the update info package | |
* @param array $response |
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 | |
/* | |
Plugin Name: Events Manager eWAY Extra Fee | |
Plugin URI: https://gist.github.com/webaware/ea1261d9aae60f86bb7d8b7ea7fea589 | |
Description: Add a fee to booking for eWAY transactions | |
Version: 1 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |
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 | |
/* | |
Plugin Name: GF PayPal Standard billing Page | |
Plugin URI: https://gist.github.com/webaware/a3172f7f81ff56cd844d7adca92726a6 | |
Description: Get Gravity Forms to select a better landing page with PayPal Standard, and make your credit card customers happier. | |
Version: 1 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |
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 | |
/* | |
Plugin Name: EDD PayPal Standard billing page | |
Plugin URI: https://gist.github.com/webaware/8751f3e4923ef5e24b322c89e04d385a | |
Description: Get Easy Digital Downloads to select a better landing page with PayPal Standard, and make your credit card customers happier. | |
Version: 1 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |