2021-07-04, 11:23 AM
I have been using this on my board since 2018; however, after upgrading to MyBB 1.8.27, I discovered that the Thread Views count was not incrementing on viewing threads containing embedded tweets.
After a bit of investigation, I managed to fix this, by doing the following:
1. Adding </p> tag, to close the <p> tag;
2. Changing the 'async' attribute of the <script> tag to async="".
Thus, the new code (that works for me with MyBB 1.8.27) is as follows:
I hope this helps anybody who has run into the same problem as me !
After a bit of investigation, I managed to fix this, by doing the following:
1. Adding </p> tag, to close the <p> tag;
2. Changing the 'async' attribute of the <script> tag to async="".
Thus, the new code (that works for me with MyBB 1.8.27) is as follows:
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr"></p><a href="$1"></a></blockquote>
<script async="" src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
I hope this helps anybody who has run into the same problem as me !