git add -p
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
version: '3.6' | |
services: | |
db: | |
image: mysql:latest | |
command: --default-authentication-plugin=mysql_native_password | |
environment: | |
MYSQL_ROOT_PASSWORD: e9w86036f78sd9 | |
volumes: | |
- "./database:/var/lib/mysql" | |
db_pma: |
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_action('gform_after_submission', 'gfToAcfListToRepeater', 10, 2); | |
function gfToAcfListToRepeater($entry, $form) | |
{ | |
foreach ($form['fields'] as $field) { | |
if (!($field['type'] == 'post_custom_field' && $field['inputType'] == 'list' && $field['enableColumns'] == true)) { | |
continue; | |
} | |
$id = $field['id']; |
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 | |
/** | |
* Gravity Wiz // Gravity Forms // Checkbox Count | |
* | |
* Get the total number of checkboxes checked. Useful when wanting to apply conditional logic based on the number of | |
* checkboxes checked. | |
* | |
* @version 2.5 | |
* @author David Smith <[email protected]> | |
* @license GPL-2.0+ |
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 | |
// standard usage | |
new GFLimitCheckboxes(115, array( | |
5 => array( | |
'min' => 2, | |
'max' => 3 | |
) | |
)); |
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 | |
/** | |
* Gravity Wiz // Gravity Forms // Give First Validation Error Focus | |
* http://gravitywiz.com/ | |
* | |
* Plugin Name: Gravity Forms First Error Focus | |
* Plugin URI: https://gravitywiz.com/make-gravity-forms-validation-errors-mobile-friendlyer/ | |
* Description: Automatically focus (and scroll) to the first field with a validation error. | |
* Author: Gravity Wiz | |
* Version: 1.1 |
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 'XXX' to your form id | |
$location_form_id = XXX; | |
add_filter( 'gform_pre_render_'.$location_form_id, 'limit_choices' ); | |
add_filter( 'gform_pre_validation_'.$location_form_id, 'limit_choices' ); | |
add_filter( 'gform_pre_submission_'.$location_form_id, 'limit_choices' ); | |
add_filter( 'gform_pre_submission_filter_'.$location_form_id, 'limit_choices' ); | |
add_filter( 'gform_admin_pre_render_'.$location_form_id, 'limit_choices' ); | |
function limit_choices( $form ) { |
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
import sys | |
import dropbox | |
from dropbox.files import WriteMode | |
from dropbox.exceptions import ApiError, AuthError | |
import datetime | |
dt = datetime.datetime.today() | |
TOKEN = '<Replace with your Access Token>' | |
LOCALFILE = '<Replace with the file that you want to backup>' | |
# Don't forget to add the file extension at the end of BACKUPPATH. |
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 | |
/** | |
* Gravity Wiz // Gravity Forms // Email Header to Identify Notification Source | |
* | |
* You've installed Gravity Forms on a ton of sites and now you're getting a ton of notifications. The problem is there | |
* is no clear indicator which site is sending the notification. How frustrating! | |
* | |
* This simple plugin automatically adds a custom header that identifies the URL that generated the Gravity Forms notification. | |
* This is most useful when installed as an MU plugin at the start of development on each site. | |
* |
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 | |
/** | |
* Gravity Perks // Media Library // Set Upload Directory | |
* http://gravitywiz.com/documentation/gravity-forms-media-library/ | |
*/ | |
add_filter( 'gpml_media_data', function( $return ) { | |
add_filter( 'upload_dir', 'gpml_set_upload_dir' ); | |
if( ! function_exists( 'gpml_set_upload_dir' ) ) { | |
function gpml_set_upload_dir( $upload_dir ) { | |
$upload_dir['path'] = ABSPATH . 'wp-content/uploads/paramountregistry'; |
NewerOlder