Advertisement
maximus87

Untitled

Jul 10th, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. add_action( 'gform_after_submission_3', 'download_pdf_after_submission', 10, 2 );
  2.  
  3. function download_pdf_after_submission( $entry, $form ) {
  4. // Change 'your_acf_field_key' to the actual ACF field key where the PDF file is uploaded
  5. $pdf_url = get_field( 'upload_pdf', $entry['post_id'] );
  6. // If PDF URL is not empty and is a valid URL
  7. if ( ! empty( $pdf_url ) && filter_var( $pdf_url, FILTER_VALIDATE_URL ) !== false ) {
  8. // Redirect the user to the PDF URL
  9. echo '<script>window.open("' . esc_url( $pdf_url ) . '", "_blank");</script>';
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement