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_filter('woocommerce_form_field_args','wc_form_field_args',10,3); | |
| function wc_form_field_args( $args, $key, $value = null ) { | |
| /*********************************************************************************************/ | |
| /** This is not meant to be here, but it serves as a reference | |
| /** of what is possible to be changed. /** | |
| $defaults = array( |
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 | |
| /** | |
| * @package Kinsta_users | |
| * @version 1.0 | |
| */ | |
| /* | |
| Plugin Name: Kinsta users | |
| Plugin URI: http://wordpress.org/extend/plugins/# | |
| Description: This is an example plugin | |
| Author: Carlo Daniele |
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
| /** | |
| * Given a list of items, adds and removes an active class as you hover over | |
| * them. Used to create a dropdown menu. | |
| * | |
| * Copyright (c) 2012 Blake Haswell | |
| * Licensed under the MIT license: http://opensource.org/licenses/MIT | |
| * | |
| * Example: | |
| * var items = document.getElementById("dropdown").children; | |
| * new Dropdown(items); |