Create a weekly recurring event
add_filter(‘frm_show_entry_dates’, ‘weekly_recurring_event’, 10, 2); function weekly_recurring_event($dates, $entry){ if ( $entry->form_id == 5 ){ //change 5 to the ID of your form if ( isset($entry->metas[125]) && $entry->metas[125] == ‘Yes’ ) {//Change 125 to the ID of your “Recurs weekly” field $start_date…Continue reading