I hereby claim:
- I am jodiwarren on github.
- I am jwarren (https://keybase.io/jwarren) on keybase.
- I have a public key ASB4qJRDeZsplbF5iJispwJYtAjrnmx-hglyc0F3ImlZtgo
To claim this, I am signing this object:
| { | |
| "repositories": [ | |
| { | |
| "type": "package", | |
| "package": { | |
| "name": "advanced-custom-fields/advanced-custom-fields-pro", | |
| "version": "5.0", | |
| "type": "wordpress-plugin", | |
| "dist": { | |
| "type": "zip", |
| <?php | |
| global $wp_filter; | |
| $hook_to_check = 'nameOfHook'; | |
| $destination_hook = 'wp_footer'; | |
| $acf_front_end_scripts = $wp_filter[$hook_to_check]; | |
| foreach ( $acf_front_end_scripts as $scripts ) { | |
| foreach ( $scripts as $script ) { | |
| remove_action( $hook_to_check, $script['function'] ); | |
| add_action( $destination_hook, $script['function'], $script['accepted_args'] ); |
| <?php | |
| namespace SiteName\Analytics; | |
| function enqueue_analytics() { | |
| $analytics_id = get_option('options_analytics_id'); | |
| if ( ! $analytics_id ) { | |
| return; |
| //// | |
| /// @author Jodi Warren for JH | |
| /// @group _fonts | |
| //// | |
| /// Add a new @font-face font with consistent markup. All file types should | |
| /// be provided with the same file name, obviously bar the extension. | |
| /// If you wish to use multiple weights/styles of the same font family, simply | |
| /// provide them with the same family name, and specify the weight and style. | |
| /// |
| curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash && . ~/.bashrc && nvm install --lts && nvm alias default lts/* |
I hereby claim:
To claim this, I am signing this object:
| const initialMap = Immutable.Map({ | |
| oldItemName: { | |
| potato: { | |
| method: 'baked', | |
| temperature: 180, | |
| time: 60 | |
| }, | |
| egg: { | |
| method: 'fried', | |
| temperature: 120, |
| const Immutable = require('immutable'); | |
| const initialData = [ | |
| { | |
| id: '01', | |
| value: 10 | |
| }, | |
| { | |
| id: '02', | |
| value: 100 |
| const authorities = ` Subject: C=US, O=Equifax, OU=Equifax Secure Certificate Authority | |
| Subject: C=US, O=VeriSign, Inc., OU=VeriSign Trust Network, OU=(c) 2008 VeriSign, Inc. - For authorized use only, CN=VeriSign Universal Root Certification Authority | |
| Subject: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Universal CA, CN=TC TrustCenter Universal CA II | |
| Subject: C=US, O=RSA Data Security, Inc., OU=Secure Server Certification Authority | |
| Subject: C=US, O=Equifax Secure, OU=Equifax Secure eBusiness CA-2 | |
| Subject: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Universal CA, CN=TC TrustCenter Universal CA III | |
| Subject: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 4 CA, CN=TC TrustCenter Class 4 CA II | |
| Subject: C=US, O=VeriSign, Inc., OU=Class 1 Public Primary Certification Authority - G2, OU=(c) 1998 VeriSign, Inc. - For authorized use only, OU=VeriSign Trust Network | |
| Subject: C=US, O=Symantec Corporation, OU=Symantec Trust Network, CN=Syma |
| jQuery("[data-mh=category-list-product]").each((index, item) => { | |
| const availability = jQuery(item).find('.availability'); | |
| if(availability.hasClass('out-of-stock')){ | |
| item.remove(); | |
| } | |
| }) |