Skip to content

Instantly share code, notes, and snippets.

@zachskaggs
Created December 2, 2014 19:36
Show Gist options
  • Save zachskaggs/cd34b14e01006c6599d0 to your computer and use it in GitHub Desktop.
Save zachskaggs/cd34b14e01006c6599d0 to your computer and use it in GitHub Desktop.
Ninja Forms Rename CSV
<?php
function nf_change_csv_name( $filename ) {
$filename = 'nameyourfilehere';
return $filename;
}
add_filter( 'nf_subs_csv_filename', 'nf_change_csv_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment