Forum Replies Created
-
-
1 week ago in reply to: Remove “Name:” Prefix from DRM Text Overlay
Hello Martin,
I applied the change on the Beta version, but it didn’t achieve what I needed. I tried removing the “name” prefix using multiple approaches, including JavaScript, CSS, and PHP in the theme’s functions.php, but the result was not as expected.
Could you please advise on the next possible solution?
Thanks,
Mustafa1 week ago in reply to: Remove “Name:” Prefix from DRM Text Overlaynote: my code worked fine but the phone number appears like this “name: 797845455″ , but i want it like this ” 797845455 “
1 week ago in reply to: Remove “Name:” Prefix from DRM Text OverlayHello, thank you for your support regarding the DRM text issue. I have tested the beta version you suggested, but honestly I don’t want to move to the beta . Could you please let me know if there is any alternative solution or fix available in the release version instead of switching to beta?
2 weeks ago in reply to: Remove “Name:” Prefix from DRM Text Overlaynote: when i add my code it was separated
also i catshed phone number from plugin that i used and it works2 years ago in reply to: Make my video most securethanks , i have question
my videos are 2k .. can i encode this quality by coconat? because i see just 1080 and 4k
2 years ago in reply to: Make my video most secureThank you for responding, another question
What the type of encryption of coconut? Dose it support AES-256 encryption?
2 years ago in reply to: Make my video most secureIt’s just 500 $ for these protocols and then i will not pay monthly subscription or not included ?
If thera is extra monthly fees can you give me more details please
2 years ago in reply to: Make my video most secure2 years ago in reply to: Make my video most secureHi , how much will cost if i want to use of the three protocols , could you give me more details please
2 years ago in reply to: Make my video most secureSo if i using fv coconut , the signed URLs feature it will be enabled automatically and i will not to do thing to ensure if it enabled
2 years ago in reply to: Make my video most secureWhat about the apple Fairplay and other features like it ? Can i add it in coconut streaming
2 years ago in reply to: How to add phone number on drm text featureThank you for responding so the modified code will be like this right ?
function tweak_fv_player_pro_drm_text( $data ) { $user_data = wp_get_current_user(); if ( ! empty( $user_data->ID ) ) { $phone_number = get_user_meta( $user_data->ID, 'billing_phone', true ); $data['name'] .= ' ' . $phone_number; } return $data; } add_filter( 'fv_player_pro_drm_text', 'tweak_fv_player_pro_drm_text' );
2 years ago in reply to: How to add phone number on drm text featureDo you mean Like this ?
add_filter( 'fv_player_pro_drm_text', 'tweak_fv_player_pro_drm_text' ); function tweak_fv_player_pro_drm_text( $data ) { if ( ! empty( $user_data->ID ) ) { $user_phone = get_user_meta( $user_data->ID, 'billing_phone', true ); if ( ! empty( $user_phone ) ) { $data['phone_number'] = $user_phone; } } return $data; }
2 years ago in reply to: How to add phone number on drm text featureupdate ! i tried to creat custom code for adding the phone number and i want to ask is this code will be worked ?
function tweak_fv_player_pro_drm_text( $data ) { // You can get the current user data using the standard WordPress function call $user_data = wp_get_current_user(); // Get the phone number field value from the user meta data $phone_number = get_user_meta( $user_data->ID, 'billing_phone', true ); // Add the phone number field value to the $data array $data['phone_number'] = $phone_number; return $data; } add_filter( 'fv_player_pro_drm_text', 'tweak_fv_player_pro_drm_text' );
NOTE : phone number field is present in billing_phone meta data
2 years ago in reply to: How to add phone number on drm text featureThank you for responding, sadly i know there is no phone number in drm text but i want add it due to it’s importance for me
So when i set the drm text always visible it will be changable in there position irregularly?
Regarding to page that you add in reply’s “about editing the fields of drm text” , the code shows how to hide the email address not to add any item like phone number , User Id ….
Another thing , my all videos size are about 300GB so what can i do because I’m afraid my website becomes slow