phpFreeChat requires backlink or it breaks - is there a way around this?

Apposl

Power Member
Joined
Aug 26, 2010
Messages
584
Reaction score
97
I don't mean to be shady, I'm just trying to make everything look official and white-label and I will be modifying the crud out've the thing, it's my 'learning php' project, but I'm stumped on changing the required linkback here in index.php, everything I do breaks it:

PHP:
   <div class="pfc-hook"><a href="http://www.phpfreechat.net">phpfreechat: simple Web chat</a></div>    <script type="text/javascript">      $('.pfc-hook').phpfreechat();    </script>


Any help would be appreciated! Don't mean to be breaking any rules asking this if I am!
 
There will be a function somewhere in the script that checks the link.
You need to find that function or prevent it being called.

I checked phpfreechat V1.6 and that line isnt anywhere in index.php
 
Last edited:
just remove
Code:
<a href="http://www.phpfreechat.net">phpfreechat: simple Web chat</a>
from the index file
don't remove the entire layer or <script>
 
Back
Top