Iframe Fields Profile

Home Forums Legacy Support Support queries How-to & Troubleshooting Iframe Fields Profile

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #365136
    angelhc3
    Spectator
    Hi i have followed this topic: https://wplms.io/support/forums/topic/iframe-fields-profile/ And it is what i need. I have followed the instructions and i have changed my ID field but the url looks the same and no embbed action is made. I want to show this emmbed in the profile, Iam Using v4 thanks
    #365242
    Veronica
    Moderator
    hi are you talking about this? https://docs.wplms.io/developer-guide/customisation-tips#tip-2-adding-a-youtube-preview-video-in-profile if not then have you tried to add this exactly?
    add_filter('vibebp_profile_field_block_value',function($value,$field){
    
        if(strpos($value, 'https')!==false && $field->id==255){
            global $wp_embed;
    
            $value = $wp_embed->run_shortcode('[embed]'.$value.'[/embed]');
             
        }
    
        return $value;
    },10,2);
    #365284
    angelhc3
    Spectator
    thanks, i think the first tip will work. let me try it i will be back
    #365285
    angelhc3
    Spectator
    Hi Veronica.I have tried the first tip, It works fine except for Measures, video is too small, can i change that? another thing i want is to embed a live stream channel, the code of the first tip wont work but should be similar, can you help me? And the last thing i am tryiing is to show a "Document" gallery, could it be possible to modify the behavior of the gallery field? thanks
    #365397
    Anshuman Sahu
    Keymaster
    Well we have added gallery and video type fields in the profile in vibebp plugin in las update , you can try that .but our gallery does not supports document .
    #365406
    angelhc3
    Spectator
    thanks, we have 2 pending topics: Hi Veronica.I have tried the first tip, It works fine except for Measures, video is too small, can i change that? another thing i want is to embed a live stream channel, the code of the first tip wont work but should be similar, can you help me?
    #365527
    Anshuman Sahu
    Keymaster
    Well yes that tip does supports the youtube live stream url as well .
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Iframe Fields Profile’ is closed to new replies.