Skip to content

Instantly share code, notes, and snippets.

@j-falk
j-falk / functions.php
Last active June 18, 2022 13:49
Delete generated image sizes from image upload after Formidable form submission
<?php
add_action('frm_after_create_entry', 'after_entry_created', 50, 2); //use 50 to make sure this is done very last
function after_entry_created($entry_id, $form_id){
if($form_id == 8){ //change 5 to the ID of your form
$field_id = 79; //change 25 to the ID of the upload field
if(isset($_POST['item_meta'][$field_id])){
if(is_array($_POST['item_meta'][$field_id])){
foreach ($_POST['item_meta'][$field_id] as $p){
if(is_numeric($p))