HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/school/wp-content/themes/blocksy/inc/integrations/tribe-events.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
);

add_filter(
	'blocksy:editor:post_types_for_rest_field',
	function ($post_types) {
		$post_types[] = 'tribe_events';

		return $post_types;
	}
);

add_filter(
	'blocksy:editor:post_meta_options',
	function ($options, $post_type) {
		if ($post_type !== 'tribe_events') {
			return $options;
		}

		return blocksy_get_options('integrations/the-events-calendar/meta');
	},
	10,
	2
);