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 // Do not include the opening PHP tag if you already have one. | |
add_action('awb_remove_third_party_the_content_changes', 'tw_ee_avada_remove_filters', 10); | |
function tw_ee_avada_remove_filters() { | |
remove_filter( | |
'the_content', | |
array('EED_Event_Single', 'event_details'), | |
EED_Event_Single::EVENT_DETAILS_PRIORITY | |
); | |
remove_filter( |
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 | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
add_action( 'wp_enqueue_scripts', 'my_ee_add_ticket_row_headings', 11 ); | |
function my_ee_add_ticket_row_headings() { | |
wp_add_inline_script( | |
'ticket_selector', | |
'jQuery( document ).ready(function($) { | |
$(".ee-ticket-tees-for-keys-golf-tournament-executive-sponsor") | |
.before( "<tr><td colspan=\'3\'><h3>Tees For Keys</h3></td></tr>" ); |
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
#ee-category-legend-ul #ee-category-li-70, | |
#ee-category-submit option[value=unlisted] { | |
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
<?php | |
/* | |
Plugin Name: EE Custom Functions - Specific Functions Plugin | |
Description: Use this plugin to add custom functions to your site. | |
*/ | |
// Change Mini Cart Widget ticket row. | |
function ee_mer_change_item_name($ticketrowname){ | |
return $ticketrowname . ' (date test)'; | |
} |
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 // Please do not include the opening PHP tag if you alreayd have one | |
// Example of how you can set EE datepicker questions to be readonly | |
// which means users must use the datepicker and not type in values manually. | |
add_action( 'wp_enqueue_scripts', 'tw_ee_datepicker_readonly', 11 ); | |
function tw_ee_datepicker_readonly() { | |
wp_add_inline_script( | |
'single_page_checkout', | |
'jQuery(document).ready(function($){ | |
$(".ee-datepicker-input-dv input").prop("readonly", true); |
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 // Please do not include the opening PHP tag if you already have one | |
function tw_ee_payment_overview_url__query_args($query_args, $registration) { | |
// Pull the transaction from the registration object. | |
$transaction = $registration->transaction(); | |
// Check we have an EE_Transaction object | |
// Check the 'attendee_information' step has NOT been complete | |
// Check we have at least 1 payment related to the transaction | |
// (likely an imported registration with attendee_information not set to true) | |
if ($transaction instanceof EE_Transaction |
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 | |
//* 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', | |
'tw_ee_filter_ics_data', | |
10, | |
2 | |
); |
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 //Please do not include the opening PHP tag if you already have one. | |
add_filter('add_meta_boxes_espresso_events', 'tw_ee_disable_acf_datetimepicker'); | |
function tw_ee_disable_acf_datetimepicker() { | |
add_filter('acf/settings/enqueue_datetimepicker', '__return_false'); | |
add_filter('acf/settings/enqueue_datepicker', '__return_false'); | |
} |
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 // Please do not include the opening PHP tag if you already have one | |
function tw_eea_wp_user_login_password_reset( $options, $form ) { | |
if( $form instanceof EE_Form_Section_Proper | |
&& isset( $options[ 'name' ] ) | |
&& $options[ 'name' ] === 'ee-spco-wpuser_login-reg-step-form' | |
) { | |
$reset_url = esc_url( wp_lostpassword_url() ); | |
$reset_link = '<a href="'. $reset_url .'">Lost your password?</a>'; |