This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body:not(.logged-in) .tribe_events_cat-private { | |
display: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tag-canceled .tribe-events-calendar-list__event-datetime span { | |
opacity: .5; | |
text-decoration: line-through; | |
} | |
.tag-canceled .tribe-events-calendar-list__event-datetime::before { | |
content: "Canceled"; | |
color: #e64a31; | |
margin-right: .5rem; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png"> | |
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png"> | |
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png"> | |
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png"> | |
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png"> | |
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png"> | |
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png"> | |
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"> | |
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png"> | |
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="https://moderntribe.createsend.com/t/r/s/utktitu/" method="post" id="subForm"> | |
<p> | |
<label for="fieldName">Name</label><br /> | |
<input id="fieldName" name="cm-name" type="text" /> | |
</p> | |
<p> | |
<label for="fieldEmail">Email</label><br /> | |
<input id="fieldEmail" name="cm-utktitu-utktitu" type="email" required /> | |
</p> | |
<p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ce_timepicker_24hr_fix() { | |
echo " | |
<script type='text/javascript'> | |
document.addEventListener( 'DOMContentLoaded', function() { | |
if ( 'function' !== typeof jQuery ) { | |
return; | |
} | |
setTimeout( function() { | |
jQuery( '.tribe-timepicker' ).timepicker( { 'timeFormat': 'H:i' } ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Single Event Template | |
* A single event. This displays the event title, description, meta, and | |
* optionally, the Google map for the event. | |
* | |
* Override this template in your own theme by creating a file at [your-theme]/tribe-events/single-event.php | |
* | |
* @package TribeEventsCalendar | |
* @version 4.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Renders the WooCommerce tickets table/form | |
* | |
* Override this template in your own theme by creating a file at: | |
* | |
* [your-theme]/tribe-events/wootickets/tickets.php | |
* | |
* @version 4.3.5 | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Prepends category name(s) to to event titles | |
function tribe_events_title_include_cat ($title, $id) { | |
$separator = ' » '; // Separator between categories and title | |
$cats = get_the_terms($id, 'tribe_events_cat'); | |
if (tribe_is_event($id) && $cats && !is_single()) { | |
$cat_titles = array(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Appends start time and venue to event titles | |
function tribe_events_title_include_time_venue ($title, $id) { | |
$separator = ' » '; // Separator between categories and title | |
if (tribe_is_event($id) && !is_single()) { | |
$title = $title . $separator . tribe_get_start_time() . $separator . tribe_get_venue(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Single Event Meta (Organizer) Template | |
* | |
* Override this template in your own theme by creating a file at: | |
* [your-theme]/tribe-events/modules/meta/organizer.php | |
* | |
* @package TribeEventsCalendar | |
* @version 4.4 | |
*/ |
NewerOlder