beerForo
Well-known member
I can't use the find post/replace tool from XF because this is not in posts, it's in profile posts.
After an import, if somebody posted a URL as a profile post previously (not a profile post comment, those are ok) they show html.
Here is an example as it shows in the post, and, the link is active but html shows.
There are a few instances where the URL bbcode is there as well as the html, so I am looking to avoid adding double bbcode in those instances. For example they look like:
Looking for a query to remove the html and wrap with
After an import, if somebody posted a URL as a profile post previously (not a profile post comment, those are ok) they show html.
Here is an example as it shows in the post, and, the link is active but html shows.
Code:
<a href="http://domain.com/topic/7428-hello-there/" rel='nofollow external' class="su_links">http://domain.com/topic/7428-hello-there/</a>
There are a few instances where the URL bbcode is there as well as the html, so I am looking to avoid adding double bbcode in those instances. For example they look like:
Code:
<a href="http://domain.com/topic/7428-hello-there/" rel='nofollow external' class="su_links">[URL]http://domain.com/topic/7428-hello-there/[/URL]</a>
Looking for a query to remove the html and wrap with
[URL][/URL]
, thanks if you can help!