-
-
Save travislopes/d10fcbce39c566c0de9c0813f19742c1 to your computer and use it in GitHub Desktop.
This file contains 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 | |
/** | |
* Modify the base folder where generated PDFs are stored. | |
* | |
* @param string $base_path The base PDFs folder. Defaults to wp-content/uploads/gravity_forms/fillablepdfs. | |
*/ | |
add_filter( 'fg_fillablepdfs_base_path', function( $base_path ) { | |
return '/path/to/pdfs/folder'; | |
}, 10, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment