wp-productzilla/wp-content/themes/blocksy/inc/integrations/tribe-events.php
rizal.productzilla e38e8b231d templating
2024-04-01 16:08:46 +07:00

30 lines
502 B
PHP

<?php
add_filter(
'tribe_get_option_tribeEventsTemplate',
function ($value) {
return 'default';
}
);
add_filter(
'tec_events_display_settings_tab_fields',
function ($fields) {
if (isset($fields['tribeEventsTemplate'])) {
$fields['tribeEventsTemplate']['conditional'] = false;
}
return $fields;
}
);
add_filter(
'tribe_events_views_v2_view_html_classes',
function ($classes) {
return array_filter($classes, function ($class) {
return $class !== 'alignwide';
});
},
50
);