golden hour
/var/www/html/wp-content/plugins/the-events-calendar/src/Tribe/Integrations/Hello_Elementor
⬆️ Go Up
Upload
File/Folder
Size
Actions
Service_Provider.php
552 B
Del
OK
Templates.php
1.77 KB
Del
OK
hello-elementor-functions.php
888 B
Del
OK
Edit: Service_Provider.php
<?php /** * Handles The Events Calendar integration with the "Hello Elementor" theme. * * @since 5.7.0 * * @package Tribe\Events\Integrations\Hello_Elementor */ namespace Tribe\Events\Integrations\Hello_Elementor; /** * Class Service_Provider * * @since 5.7.0 * * @package Tribe\Events\Integrations\Hello_Elementor */ class Service_Provider extends \tad_DI52_ServiceProvider { public function register() { if ( 'hello-elementor' !== get_template() ) { return; } require_once __DIR__ . '/hello-elementor-functions.php'; } }
Save