XF 2.2 Any way to include x.com and youtube shorts on bbcode parse without external addon?

Scandal

Well-known member
Hello all! :)

Is there any way to include x.com analyze and youtube shorts via the integrated /admin.php?bb-code-media-sites/ ?

For example, to push the Add BBCode media site and what to add on the fields (Match URLs) etc?
I have xF2.2.2 and I'm not yet ready to update to most recent version. This is why I'm asking about integrated function. :)
 
Match URLs:

Code:
x.com/*/status/{$id}
x.com/statuses/{$id}
twitter.com/*/status/{$id}
twitter.com/statuses/{$id}

Embed template:

Code:
<xf:page option="jsState.twitter" value="{{ true }}" />
<xf:js src="xf/embed.js" min="1" />

<div class="bbMediaJustifier bbCode-tweet"
      data-media-site-id="{$siteId}"
      data-media-key="{$id}"
      data-xf-init="tweet"
      data-tweet-id="{$id}"
      data-lang="{$xf.language.language_code}"
      data-theme="{{ property('styleType') }}"
      ><a href="https://twitter.com/i/web/status/{$id}" rel="external" target="_blank">
    <i class="fab fa-twitter" aria-hidden="true"></i> https://twitter.com/i/web/status/{$id}</a></div>
 
Top Bottom