Skip to content

Instantly share code, notes, and snippets.

@hirejordansmith
hirejordansmith / pre-populate-gf-dropdown-with-affiliates.php
Last active March 25, 2021 01:29
Pre-populate a Gravity Forms Dropdown field with AffiliateWP Affiliates
<?php
// Add filters for Form ID 8
add_filter( 'gform_pre_render_8', 'populate_posts' );
add_filter( 'gform_pre_validation_8', 'populate_posts' );
add_filter( 'gform_pre_submission_filter_8', 'populate_posts' );
add_filter( 'gform_admin_pre_render_8', 'populate_posts' );
function populate_posts( $form ) {
// Loop through each field searching for any "select" field with the class "populate-affs"