Current Path : /var/www/mainsite/gobch/wp-content/themes/eventchamp/ |
Current File : /var/www/mainsite/gobch/wp-content/themes/eventchamp/functions.php |
<?php define( 'EVENTCHAMP_VERSION', '1.5.0' ); include ( get_template_directory() . '/include/core.php'); include ( get_template_directory() . '/include/admin.php'); include ( get_template_directory() . '/include/widgets.php'); include ( get_template_directory() . '/include/customize.php'); include (get_template_directory() . '/include/tgm.php' ); add_filter( 'ot_show_pages', '__return_false' ); add_filter( 'ot_show_new_layout', '__return_false' ); add_filter( 'ot_theme_mode', '__return_true' ); if ( ! class_exists( 'OT_Loader' ) ) { require get_template_directory() .'/include/admin/ot-loader.php'; } add_filter( 'FHEE__ticket_selector_chart_template__ticket_required_message', 'my_custom_message_for_required_tickets' ); function my_custom_message_for_required_tickets( $text ) { $text = 'We highly recommend securing your ticket to ensure a seamless experience.'; return $text; }