Factory.php
2 weeks ago
MulticurrencyHooks.php
2 weeks ago
class-wcml-the-events-calendar.php
2 weeks ago
MulticurrencyHooks.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WCML\Compatibility\TheEventsCalendar; |
| 4 | |
| 5 | class MulticurrencyHooks implements \IWPML_Action { |
| 6 | |
| 7 | public function add_hooks() { |
| 8 | if ( ! is_admin() ) { |
| 9 | add_filter( 'tribe_events_cost_unformatted', [ $this, 'convert_events_cost' ], 10, 1 ); |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | public function convert_events_cost( $cost ) { |
| 14 | return apply_filters( 'wcml_raw_price_amount', $cost ); |
| 15 | } |
| 16 | |
| 17 | } |
| 18 |