Skip to content

Instantly share code, notes, and snippets.

View michaeledi's full-sized avatar

Edi Weigh michaeledi

View GitHub Profile
@michaeledi
michaeledi / Gravity Forms Country Dropdown List
Last active May 4, 2022 09:09 — forked from JKirchartz/country
Gravity Forms' List of Countries (comma-delimited)
Afghanistan,
Albania,
Algeria,
American Samoa,
Andorra,
Angola,
Anguilla,
Antarctica,
Antigua and Barbuda,
Argentina,
@michaeledi
michaeledi / gw-gravity-forms-populate-date-usage.php
Last active September 6, 2018 03:38 — forked from spivurno/gw-gravity-forms-populate-date-usage.php
Gravity Wiz // Gravity Forms // Populate Date
<?php
/**
* Gravity Wiz // Gravity Forms // Populate Date (Usage)
*/
//target date= source date + inputID field (days)
new GW_Populate_Date( array(
'form_id' => 21,
'target_field_id' => 11,
'source_field_id' => 10,
//'format' => 'd/m/Y',
@michaeledi
michaeledi / gp-multi-page-navigation-disable-on-first-page.php
Created April 7, 2016 16:35 — forked from spivurno/gp-multi-page-navigation-disable-on-first-page.php
GP Multi-page Navigation // Gravity Perks // Disable Navigation on First Page Only
<?php
/**
* GP Multi-page Navigation // Gravity Perks // Disable Navigation on First Page Only
*/
// update the "673" to your form ID
add_filter( 'gform_pre_render_673', function( $form ) {
$submission = rgar( GFFormDisplay::$submission, $form['id'] );