Advertisement
BakerMan

Use currency symbol in single event meta

Oct 14th, 2013
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_action('tribe_events_before_view', 'use_currency_for_event_cost_meta_field');
  2.  
  3. function use_currency_for_event_cost_meta_field() {
  4.     tribe_set_meta_value('tribe_event_cost', 'tribe_get_cost_with_currency', 'callback');
  5. }
  6.  
  7. function tribe_get_cost_with_currency() {
  8.     return tribe_get_cost(null, true);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement