This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
add_action( 'template_redirect', 'tw_add_ee_calendar_assets' ); | |
function tw_add_ee_calendar_assets() { | |
// change is_page() parameter to match your calendar page slug | |
if ( class_exists( 'EED_Espresso_Calendar' ) && is_page( 'whats-on' ) ) { | |
global $is_espresso_calendar; | |
$is_espresso_calendar = TRUE; | |
add_action( 'wp_enqueue_scripts', array( EED_Espresso_Calendar::instance(), 'calendar_scripts' ) ); |
This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
add_action( 'AHEE_event_editor_questions_notice', 'my_custom_checkboxes_for_additional_question_groups' ); | |
function my_custom_checkboxes_for_additional_question_groups() { | |
echo '<script>jQuery( | |
"#espresso_events_Registration_Form_Hooks_Extend_additional_questions_metabox input[value=\'1\']" | |
) | |
.prop( "checked", true );</script>'; | |
} |
This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
add_action( | |
'wp_enqueue_scripts', | |
'tw_ee_change_default_ee_country_and_state_option', | |
20 | |
); | |
function tw_ee_change_default_ee_country_and_state_option(){ | |
$custom_js = 'jQuery(document).ready(function($){'; |
This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
function my_ee_add_currency_checkout() { | |
wp_add_inline_script( | |
'single_page_checkout', | |
'jQuery( document ).one( "ajaxStop", function() { | |
jQuery("#spco-payment-info-table") | |
.find(".spco-grand-total .total:nth-of-type(2)") | |
.append("<span>(CHF)</span>"); |
This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
/** | |
* PLEASE READ AND FOLLOW ALL INSTRUCTIONS IN CAPS | |
* | |
* IN ORDER FOR THIS TO WORK YOU NEED TO ADD A QUESTION USED FOR A TAX NUMBER | |
* | |
* BECAUSE THIS QUESTION SHOULD ONLY BE ASKED ONCE PER TRANSACTION | |
* YOU SHOULD ADD THE ABOVE QUESTION TO A GROUP ONLY ASKED FOR THE PRIMARY REGISTRANT |
This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
add_filter( | |
'FHEE__EE_Export__report_registration_for_event', | |
'tw_ee_registration_for_event_set_RAP_ASC', | |
10, | |
2 | |
); | |
function tw_ee_registration_for_event_set_RAP_ASC($query_params, $event_id) { |
This file contains 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 //* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
add_filter( | |
'FHEE__EED_Ical__download_ics_file_ics_data', | |
'my_custom_ical_timezone_output_filter', | |
10, | |
2 | |
); | |
function my_custom_ical_timezone_output_filter( | |
$ics_data, |
This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
function ee_add_unique_attendee_validation(){ | |
wp_add_inline_script( | |
'single_page_checkout', | |
'jQuery( document ).ready(function($) { | |
$(".ee-reg-qstn-email").addClass("unique"); | |
$(".ee-reg-qstn-fname").addClass("unique"); | |
$(".ee-reg-qstn-lname").addClass("unique"); |
This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
add_action( | |
'AHEE__EE_Transaction_Processor__update_transaction_and_registrations_after_checkout_or_payment', | |
'my_add_user_cap_for_ticket', | |
10, | |
2 | |
); | |
This file contains 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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
function my_add_mer_scripts_everywhere() { | |
wp_enqueue_style( | |
'espresso_multi_event_registration', | |
apply_filters( | |
'FHEE__EED_Multi_Event_Registration__enqueue_scripts__event_cart_css', | |
EE_MER_URL . 'css' . DS . 'multi_event_registration.css' | |
) |
NewerOlder