My user profiles are intended to showcase some of my clients. In testing, I have embedded videos from different platforms in the About ME section.
It seems to work just fine.Β
Is this acceptable? Will I have issues with this in the future? How about security issues?
I also need to embed PDFs in this same section. Does anyone have any suggestions regarding this?
I have purchased all the addons and they only work in posting on forums, Is there a fix somewhere so I can use these in member profiles? I know I have talked about this before. I know there is update coming soon, could these options be added in the next update?
This is a big deal for me.
Your feedback is very appreciated.
You can use the hook-code below:Β
add_filter( 'wpforo_form_prepare_values', function($f){ if( $f['name'] === 'about' ){ $f['value'] = apply_filters( 'wpforo_body_text_filter', $f['value'], []); } return $f; } );
Put the code in your active theme functions.php file.Β
1. I asked this questionΒ in the original post
My user profiles are intended to showcase some of my clients. In testing, I have embedded videos from different platforms in the About ME section.
It seems to work just fine.Β
Is this acceptable?
2. @sofy, I added the code you supplied and put it into a new PHP snippet on my board. What is the code above supposedΒ to do specifically?
Β
Many Thanks