Troubleshooting::get_issues_found()

Displays issues found in the UI.


Return

(array) of issues which are displayed on the troubleshooting page.


Top ↑

Source

File: src/Tribe/Admin/Troubleshooting.php

	public function get_issues_found() {
		$issues_found = apply_filters( 'tec_help_troubleshooting_issues_found', [
			[
				'title'        => __( 'Site time zone uses UTC', 'tribe-common' ),
				'description'  => __( 'When using The Events Calendar, we highly recommend that you use a geographic timezone such as "America/Los_Angeles" and avoid using a UTC timezone offset such as “UTC+9”. Choosing a UTC timezone for your site or individual events may cause problems when importing events or with Daylight Saving Time. Go to your the General WordPress settings to adjust your site timezone.', 'tribe-common' ),
				'more_info'    => 'http://evnt.is/1ad3',
				'resolve_text' => __( 'Adjust your timezone', 'tribe-common' ),
				'fix'          => '/wp-admin/options-general.php',
				'active'       => $this->is_active_issue( 'timezone' ),
			],
			[
				'title'        => __( 'Install max has been reached', 'tribe-common' ),
				'description'  => __( 'License keys can only be used on a limited number of sites, which varies depending on your license level. You\'ll need to remove the license from one or more other site\'s in order to use it on this one.', 'tribe-common' ),
				'more_info'    => 'https://evnt.is/1aqz',
				'resolve_text' => __( 'Manage your licenses', 'tribe-common' ),
				'fix'          => 'https://evnt.is/1aq-',
				'active'       => $this->is_active_issue( 'install-max' ),
			],
			[
				'title'        => __( 'Default Google Maps API key', 'tribe-common' ),
				'description'  => __( 'The Events Calendar comes with an API key for basic maps functionality. If you’d like to use more advanced features like custom map pins, dynamic map loads, or Events Calendar Pro\'s Location Search and advanced Map View, you’ll need to get your own Google Maps API key and add it to Events > Settings > Integrations', 'tribe-common' ),
				'more_info'    => 'https://evnt.is/1aqx',
				'resolve_text' => __( 'Enter a custom API key', 'tribe-common' ),
				'fix'          => '/wp-admin/edit.php?page=tribe-common&tab=addons&post_type=tribe_events',
				'active'       => $this->is_active_issue( 'geolocation' ),
			],
			[
				'title'        => __( 'Plugin(s) are out of date', 'tribe-common' ),
				'description'  => __( 'It\'s important to use the most recent versions of our plugins so that you have access to the latest features, bug fixes, and security updates. Plugin functionality can be comprimised if your site is running outdated or mis-matched versions.', 'tribe-common' ),
				'more_info'    => 'https://evnt.is/1aqy',
				'resolve_text' => __( 'Check for updates', 'tribe-common' ),
				'fix'          => '/wp-admin/update-core.php',
				'active'       => $this->is_active_issue( 'out-of-date' ),
			],
		] );

		return $issues_found;
	}

Top ↑

Changelog

Changelog
Version Description
4.14.2 Introduced.