MyBB Community Forums

Full Version: Why do Twitter links NOT embed?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can a forum owner change a setting in order that they embed?  Thanks in advance.
They do embed but you need to add an embed for twitter links,

go to my code IN SETTINGS AND ADD: \[twitter\](.*?)\[/twitter\]
to regular expressions

and add:
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr"><a href="$1"></a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

for replacement:


now you can wrap twitter urls in[twitter]tweet url here[/twitter]
(2020-06-12, 04:56 AM)Michael2014 Wrote: [ -> ]They do embed but you need to add an embed for twitter links,

go to my code IN SETTINGS AND ADD: \[twitter\](.*?)\[/twitter\]
to regular expressions

and add:
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr"><a href="$1"></a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

for replacement:


now you can wrap twitter urls in[twitter]tweet url here[/twitter]


I also have tried this, but doesn't seem to work anymore?