<?php
add_filter( 'um_get_field__{$rewards-points}', 'my_get_field', 10, 1 );
function my_get_field( $data ) {
// your code here
return $data;
}
?>
I tried using the abouve but I have no idea how to get this to work. Essentially I want to be able to wrap this in a div with a specific ID. Anyone?