MyBB Community Forums

Full Version: Help require regarding Word Filter
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have this -->

<a href="attachment.php?aid=46695" target="_blank" title="">2.png</a>

in my site but i want to change it to

<a href="https://community.mybb.com/attachment.php?aid=46695" target="_blank" title="">

no matter what I am trying but doesn't work .


What I want is if someone post something start with
<a href="attachment.php?aid=numbers

it will change into

<a href="https://community.mybb.com/attachment.php?aid=numbers

please help me with this.

anyone please ?
Describe the use case a bit more?

If its in a rendered page then a DOM manipulation can come handy.

Place this line in your footer template:
<script type="text/javascript">$('a[href^="attachment.php"]').attr('href',"https://community.mybb.com/"+$('a[href^="attachment.php"]').attr('href'));</script>

If there are multiple in a page, use $.each.