Repeatable option fields not saving

Use a html setup similar to the following: <input name=”multi[0]” /> <input name=”multi[1]” /> <input name=”multi[2]” /> etc.. Please be more specific to get better answers. For example don’t paste all your code but just a few snippets of it what are relevant to your question.

Remove Edit Profile option but still have the profile viewable

add_filter( ‘wpmem_register_form_rows’, ‘prefix_profile’, 9999, 2 ); function prefix_profile( $rows, $toggle ){ if( ‘edit’ == $toggle ){ foreach( $rows as $row_item ){ $rows[$row_item[‘meta’]][‘field’] = preg_replace( ‘/<input(.*) value=”(.*)” class=”textbox”(.*)\/>/’, ‘<p class=”noinput”>$2&nbsp;</p>’, $row_item[‘field’] ); $rows[$row_item[‘meta’]][‘label’] = str_replace( ‘*’, ”, $row_item[‘label’] ); } } return $rows; }

Access saved Options / Settings

Because your options are stored in one overarching serialized option, you have to make a function like below to retrieve the right option. <?php function get_contact_details_setting( $option ) { $contact_details_settings = unserialize( get_option( ‘contact_details_settings’ ) ); return $contact_details_settings[$option]; } ?>