• Pretty much what the title says:

    I have a WP site with Ultimate Embed set up to allow ppl to register and have profiles. It works fine.

    The group of people I am registering are all performers and have Calendly events set up where people can book Zoom calls with them. Once each performer registers with my site, I need to be able to let them embed their Calendly calendar on their profile page. I’ve added a few fields to the profile section, where they can add text, site links, etc. But nothing seems to be able to take a Calendly embed. I know you can set up a text area and let it interpret HTML but these embeds have a little bit of JS in them, and even the shorter ones that don’t aren’t showing up. It’s very frustrating!

    Is there a way to let my users cut and paste their Calendly embeds so that they show up on their profile page?

Viewing 1 replies (of 1 total)
  • Plugin Support Aswin Giri

    (@aswingiri)

    Hello @duncanreyneke

    UM does not have a built-in embed field. I suggest you only collect data from the edit screed using the text field or Textarea field and later using create embed code with a hook and display it on the user profile page. Here is an example of what you can do.

    add_action("um_profile_content_main",function( $args ){
        $embed_id = get_user_meta( um_profile_id(),'_embed_id',true );
        echo 'added embed code here using $embed_id';
    });
Viewing 1 replies (of 1 total)
  • The topic ‘How Can Users Add An Embed Code to Their Profile Page?’ is closed to new replies.