y2kemo

Replace text field labels with url

Jul 5th, 2013
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. // Many pieces of meta info pass through this filter, not only custom fields
  2. add_filter('tribe_meta_factory_template', 'change_custom_fields', 20, 3);
  3.  
  4. function change_custom_fields($html, $label, $meta) {
  5. // We are only interested in one specific custom field
  6. if ('Registration' !== $label) return $html;
  7.  
  8. // Swap out the current value for something else
  9.  
  10. return str_replace($meta,"<a href=$meta>Click to register</a>", $html);
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment