Example #1
0
function cyberchimps_remove_header_drag_drop($sections_list)
{
    return cyberchimps_remove_options($sections_list, array('cyberchimps_header_drag_drop_section'));
}
Example #2
0
function cyberchimps_contact_section($original)
{
    $new = cyberchimps_remove_options($original, array('cyberchimps_header_details_section', 'cyberchimps_header_banner_section'));
    return $new;
}
Example #3
0
/**
 * Removes unwanted fields
 *
 * @param $orig array field options
 *
 * @return array
 */
function cyberchimps_remove_default_options($orig)
{
    $remove = array('searchbar');
    $new_options = cyberchimps_remove_options($orig, $remove);
    return $new_options;
}