0 events found.
/* * Possible solution for Single Event page 404 errors where the WP_Query has an attachment set * IMPORTANT: Flush permalinks after pasting this code: http://tri.be/support/documentation/troubleshooting-404-errors/ * Updated to work with post 3.10 versions */ function tribe_attachment_404_fix () { if (class_exists('Tribe__Events__Main')) { remove_action( 'init', array( Tribe__Events__Main::instance(), 'init' ), 10 ); add_action( 'init', array( Tribe__Events__Main::instance(), 'init' ), 1 ); } } add_action( 'after_setup_theme', 'tribe_attachment_404_fix' );
Skip to content