How to remove the Status dropdown and List Selection checkboxes?
-
I’ve tried following the PHP code in the manage subscribe page according to the guide, but it didn’t work. Does anyone know how to make it?
add_filter( ‘mailpoet_manage_subscription_page_form_fields’, ‘mp_remove_manage_fields’, 10); function mp_remove_manage_fields( $form ) { unset($form[2]); // Status Dropdown unset($form[4]); // List Selection Dropdown return $form; }
The page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘How to remove the Status dropdown and List Selection checkboxes?’ is closed to new replies.