Skip to content

Instantly share code, notes, and snippets.

View IntrepidRealist's full-sized avatar

Alicia St Rose IntrepidRealist

View GitHub Profile
@mrwweb
mrwweb / readme.md
Last active May 18, 2023 18:57
The Events Calendar v2 Template Reset & Customizations - Now on Github
@skyshab
skyshab / example.php
Created May 29, 2019 15:13
Custom Block editor template for event with tickets
<?php
// Return a custom order of the default blocks on an event.
// to change the order of the blocks, arrange the lines the blocks are added to the array.
// To remove a block from being added by default, comment out the line for the block.
add_filter( 'tribe_events_editor_default_template', function( $template ){
// initiate our array
$template = array();
@elimn
elimn / tribe_remove_time_list_view.php
Created August 2, 2016 03:49
MT | TEC | Remove event time from showing in List View
<?php
/**
* Removes time from List View
*/
function tribe_remove_time_list_view( $settings ) {
if( ! tribe_is_upcoming() && ! tribe_is_past() ) return $settings;
$settings[ 'time' ] = false;