Description
Filter to change the privacy message background color, text color and position.
Note: Privacy message can be enabled from rtMedia Settings > Other Settings > "ASK USERS TO AGREE TO YOUR TERMS"
Example
add_filter('rtm_privacy_bar_position', 'rtmedia_customze_privacy_message_style');
function rtmedia_customze_privacy_message_style(){
return array(
'background-color' => '#000',
'color' => '#fff',
'position' => 'bottom',
);
}