I hereby claim:
- I am mwdelaney on github.
- I am mwdelaney (https://keybase.io/mwdelaney) on keybase.
- I have a public key whose fingerprint is 609B D3F0 4057 15CD 9433 01E5 1848 2240 DB98 A03C
To claim this, I am signing this object:
| <?php | |
| namespace App; | |
| /** | |
| * Advanced Custom Fields drop-in functionality for Sage 9 | |
| * Version: 1.0 | |
| * Author: Michael W. Delaney | |
| */ |
| <?php | |
| /* | |
| Plugin Name: Beaver Builder branding for my agency | |
| Plugin URI: | |
| Description: Force the branding of the Beaver Builder plugin | |
| Version: 1.0 | |
| Author: Michael W. Delaney | |
| Author URI: | |
| License: MIT | |
| */ |
| <?php | |
| // Hook when a coupon is applied to a cart | |
| add_action( 'woocommerce_applied_coupon', 'mwd_get_applied_coupons' ); | |
| // Get the current applied coupon and compare it with other applied coupons | |
| function mwd_get_applied_coupons() { | |
| // Get the currently applied coupon's type using the $_POST global to retrieve the current coupon's code | |
| foreach ( WC()->cart->get_coupons() as $code => $coupon ) { | |
| if($coupon->code == $_POST['coupon_code']) { |
| --- | |
| - name: Sync uploads between environments | |
| hosts: web | |
| remote_user: "{{ web_user }}" | |
| vars: | |
| project: "{{ wordpress_sites[site] }}" | |
| project_root: "{{ www_root }}/{{ site }}" | |
| tasks: |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /* | |
| Plugin Name: Custom Post Type - Portfolio Items | |
| Plugin URI: | |
| Description: Custom Post Types and shortcodes for Portfolio Items. | |
| Version: 1.0 | |
| Author: Michael W. Delaney | |
| Author URI: | |
| */ |