Load a style

add_filter(‘frm_ajax_load_styles’, ‘frm_ajax_load_styles’); function frm_ajax_load_styles($styles){ $styles[] = ‘dashicons’; // change this to the enqueued name of the style to load return $styles; }Continue reading

Add Hidden Field

add_action(‘frm_entry_form’, ‘add_hidden_field’); function add_hidden_field( $form ){ echo ‘<input type=”hidden” name=”my_field_name” value=”my_field_value”>’; }Continue reading

Basic Usage

add_filter(‘frm_replace_shortcodes’, ‘frm_change_my_html’, 10, 3); function frm_change_my_html($html, $field, $args){ if($args[‘form’][‘id’] == 10){ //change 10 the id of the form to change $html .= ‘add additional content here ‘; } return $html; }Continue reading

Only show form to logged-out users

add_action(‘frm_display_form_action’, ‘close_my_form’, 8, 3); function close_my_form($params, $fields, $form){ remove_filter(‘frm_continue_to_new’, ‘__return_false’, 50); if($form->id == 6){ //remove this section or change 6 to a form ID if(is_user_logged_in()){ echo ‘You are logged in’; add_filter(‘frm_continue_to_new’, ‘__return_false’, 50); } } }Continue reading

Change Submit button text

add_filter(‘frm_submit_button’, ‘change_my_submit_button_label’, 10, 2); function change_my_submit_button_label($label, $form){ $label = ‘New Submit Label’;//Change this text to the new Submit button label return $label; }Continue reading

Add Header Image to Emails

add_filter(‘frm_email_message’, ‘add_email_header’, 10, 2); function add_email_header($message, $atts) { //edit the email header image source to include an image URL of your choice $email_header = ‘<img src=”http://www.yoursite.com/images/email-header.jpg” alt=”Header” /><br />’; $message = $email_header . $message; return $message; }Continue reading

Offset Autoscroll

add_filter(‘frm_scroll_offset’, ‘frm_scroll_offset’); function frm_scroll_offset(){ return 170; //adjust this as needed }Continue reading

Disable Autoscroll

add_filter(‘frm_scroll_offset’, ‘frm_scroll_offset’); function frm_scroll_offset(){ return -1; //this will disable the autoscroll }Continue reading

Disable readonly for Admins

add_action(‘formidable_shortcode_atts’, ‘frm_admin_readonly’, 20, 2); function frm_admin_readonly( $atts, $all_atts ) { if ( $atts[‘readonly’] == ‘administrator’ ) { global $frm_vars; if ( current_user_can(‘administrator’) ) { $frm_vars[‘readonly’] = ‘disabled’; } else { $frm_vars[‘readonly’] = false; } } }Continue reading