Created
February 19, 2015 08:51
-
-
Save Apina/c8c922158a62a97e7e2a to your computer and use it in GitHub Desktop.
Removes price modifiers (rather than taxes) from the price, so it shows the base price.
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 | |
// display the base price of the ticket in the ticket selector without Price Modifiers. | |
add_filter( 'FHEE__ticket_selector_chart_template__ticket_price', 'change_ee_ticket_selector_base_price_display', 10, 2 ); | |
function change_ee_ticket_selector_base_price_display( $ticket_price, $ticket ) { | |
$x = $ticket->base_price(); | |
$y = $x->get('PRC_amount'); | |
return $y; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment