Skip to content

Instantly share code, notes, and snippets.

View xeiter's full-sized avatar

Anton Zaroutski xeiter

View GitHub Profile
@spivurno
spivurno / gw-disable-html5-validation.php
Last active June 13, 2022 16:02
Gravity Wiz // Disable HTML5 Validation on Gravity Forms
<?php
/**
* Gravity Wiz // Disable HTML5 Validation on Gravity Forms
* http://gravitywiz.com/disable-html5-validation-on-gravity-forms/
*/
add_filter( 'gform_form_tag', 'add_no_validate_attribute_to_form_tag' );
function add_no_validate_attribute_to_form_tag( $form_tag ) {
return str_replace( '>', ' novalidate="novalidate">', $form_tag );
}
@jasonruyle
jasonruyle / .bash_profile
Created August 15, 2012 19:02
Install composer as system wide tool on OSX
alias composer="php /usr/local/bin/composer.phar"