XF 2.0 How to embed Google forms to Xenfore

This works for me:

Code:
<?xml version="1.0" encoding="utf-8"?>
<bb_codes>
  <bb_code bb_code_id="gform" bb_code_mode="replace" has_option="no" trim_lines_after="0" plain_children="0" disable_smilies="0" disable_nl2br="0" disable_autolink="0" allow_empty="0" allow_signature="0" title="Link to Google Form">
    <desc><![CDATA[Add the form ID]]></desc>
    <example><![CDATA[[gform]1FAIpQLSdQghZDLt0BQ58cMbFYZUsv4rjKrgwE0-blahblah[/gform]]]></example>
    <output><![CDATA[]]></output>
    <replace_html><![CDATA[<iframe style="border: 0; width: 100%; height: 100vh;" 
        src="https://docs.google.com/forms/d/e/{text}/viewform"></iframe>]]></replace_html>
    <replace_html_email><![CDATA[]]></replace_html_email>
    <replace_text><![CDATA[]]></replace_text>
  </bb_code>
</bb_codes>
 
Top Bottom