| 1 |
<?php |
| 2 |
|
| 3 |
// Exit if accessed directly |
| 4 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 5 |
|
| 6 |
function wppb_toolbox_remove_repeater_from_admin() { |
| 7 |
remove_filter('wppb_admin_output_form_field_repeater', 'wppb_repeater_handler', 10); |
| 8 |
} |
| 9 |
add_action( 'admin_init', 'wppb_toolbox_remove_repeater_from_admin' ); |
| 10 |
|