Skip to content

Instantly share code, notes, and snippets.

View barryhughes's full-sized avatar
🇨🇦

Barry Hughes barryhughes

🇨🇦
  • Automattic
  • Vancouver Island, Canada
View GitHub Profile
@barryhughes
barryhughes / workaround-edd-print-tickets.php
Created December 4, 2014 22:06
Fix a temp issue between EDD Tickets 3.8 and EDD 2.1.9. Please place in your theme's functions.php file (or another suitable location) but be sure to remove the leading <?php tag as appropriate.
class Tribe_EDDTickets_Fix31092 {
/**
* Override EDDTickets' own print_ticket_url() callback.
*/
public function __construct() {
add_filter( 'edd_download_file_url_args', array( $this, 'print_ticket_url' ), 20 );
}
/**
* @param $item
@barryhughes
barryhughes / remove-category-filter-categories.php
Created December 12, 2014 15:57
Quick hack to remove a specific category from the Filter Bar (3.9) output
/**
* You could add this snippet to your theme's functions.php file
* or any other suitable location.
*/
add_filter( 'tribe_events_filter_values', 'filter_categories_in_category_filter', 10, 2 );
/**
* Handles modifying the list of event categories within Filter Bar.
*
* @param $values
@barryhughes
barryhughes / tec-extensions-transition.php
Created January 25, 2015 02:21
Helpers/aliases to avoid notices when transitioning from TEC 3.9.x -> 3.10/4.x
<?php
/**
* Provides access to the main TEC object.
*
* @return TribeEvents|Tribe__Events__Events
*/
function prefix_get_event_instance() {
static $instance;
if ( ! isset( $instance ) && class_exists( 'Tribe__Events__Events' ) ) {
@barryhughes
barryhughes / fix-long-gcal-descriptions.php
Created February 9, 2015 15:16
Reduces the gcal description size *after* it has been filtered by the_content (applies to TEC 3.9.x)
<?php
// ---------------------------------------------------------------------------------------
// When inserting this into a theme's functions.php file you can copy and paste everything
// below this comment (no need to include the opening "<?php" tag, etc!)
// ---------------------------------------------------------------------------------------
/**
* Shortens the event description used within Google Calendar links.
*
@barryhughes
barryhughes / woo231-fix.php
Created February 12, 2015 01:02
Fixes a compatibility issue between WooCommerce 2.3.x and WooCommerce Tickets 3.9
<?php
// -----------------------------------------------------------------------------
// The code below this comment should be added to the theme's functions.php file
// -----------------------------------------------------------------------------
// Compatibility fix to help run WooCommerce Tickets 3.9 with WooCommerce 2.3.x
if ( class_exists( 'TribeWooTickets' ) ) {
// Form reference to ticket processing callback
$wootickets = TribeWooTickets::get_instance();
@barryhughes
barryhughes / temp-fix-wt391.php
Created February 20, 2015 15:38
Fixes an issue with WooCommerce Tickets 3.9.1 and adding multiple items to the cart
<?php
/**
* Moves the add-to-cart functionality to a later point in the request (ie,
* after the existing cart contents have been populated).
*/
function wootix_rehook_add_to_cart() {
$wootickets = TribeWooTickets::get_instance();
$callback = array( $wootickets, 'process_front_end_tickets_form' );
// Switch to a later action
@barryhughes
barryhughes / list-widget-order-by-publication.php
Created March 20, 2015 19:45
Make one, some or all list widgets (advanced and regular) show events in publication order (most recent first)
class EventsListWidget_NewlyAddedEvents {
protected $constraints = array(
'sidebar_id' => null,
'widget_id' => null,
'widget_title' => null
);
public function __construct( array $constraints = array() ) {
$this->constraints = array_merge( $this->constraints, $constraints );
add_filter( 'widget_display_callback', array( $this, 'setup' ), 10, 3 );
@barryhughes
barryhughes / continual-month-pagination.php
Created March 24, 2015 19:43
Let visitors page through all months (not just the populated date range)
/**
* Allows visitors to page forward/backwards in any direction within month view
* an "infinite" number of times (ie, outwith the populated range of months).
*/
class ContinualMonthViewPagination {
protected $tec;
public function __construct() {
add_filter( 'tribe_events_the_next_month_link', array( $this, 'next_month' ) );
add_filter( 'tribe_events_the_previous_month_link', array( $this, 'previous_month' ) );
@barryhughes
barryhughes / category.css.php
Last active August 29, 2015 14:17
Modified TECCC category CSS template
<?php
namespace Fragen\Category_Colors;
?>/* The Events Calendar Category Colors <?php echo Main::$version ?> generated CSS */
.teccc-legend a, .tribe-events-calendar a, #tribe-events-content .tribe-events-tooltip h4
{
font-weight: <?php echo $options['font_weight'] ?>;
}
.tribe-events-list .vevent.hentry h2 { padding-left: 5px; }
@barryhughes
barryhughes / sample-tribe-events.css
Created March 30, 2015 19:26
Sample tribe-events.css (examples of theming The Events Calendar views)
/**
* Sample CSS customizations for The Events Calendar and related plugins.
*
* Contents: 1. Tribe Bar Customizations
* 2. General Customizations for All Views
* 3. Month View Customizations
* 4. List View Customizations
* 5. Single Event Page Customizations
*
* Usage: This file can be used "as is" - simply save it as "tribe-events.css" within