mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
7 lines
255 B
Text
7 lines
255 B
Text
add_filter('fluentform/load_default_public', function($status, $form) {
|
|
$targetForms = [1,2,3]; // form ids that you want to disable default styles
|
|
if(in_array($form->id, $targetForms)) {
|
|
return false;
|
|
}
|
|
return $status;
|
|
}, 10, 2);
|