Infolinks conflict with clickable links

Status
Not open for further replies.

BlackJACK

Active Member
377
2010
96
905
Hi,

I have DLE 9.8 installed on one my site. I made links clickable with the help of following thread

http://www.wjunction.com/64-webmaster-resources/93379-dle-clickable-links.html

But after that infolinks stopped working on my site or sometimes its clickable links. Only one of code works at a time, most of the time infolinks work and clickable links dosen't

There is some kind of conflict between these two codes i guess, i'm not really into coding so i have no idea about it. If anyone can help me fix the issue i "ll really appreciate that

Infolinks code
Code:
<script type="text/javascript">
var infolinks_pid = 249417;
var infolinks_wsid = 0;
</script>
<script type="text/javascript" src="http://resources.infolinks.com/js/infolinks_main.js"></script>


Many thanks
 
4 comments
where did you put this script?
and where did you call the DLE one?

there shouldn't be a problem if you execute them in the right order.
 
Hi BlackJack, this is Pamela from Infolinks. I'm sorry to hear you're having issues with your Infolinks links. I suggest you write to our Customer Support team at support@infolinks.com for assistance. Good luck!


Hey thanks for writing, i already contacted your support and they said i need to contact a webmaster as they're not aware of the script


where did you put this script?
and where did you call the DLE one?

there shouldn't be a problem if you execute them in the right order.


Tried almost everywhere, addvertisement, sidebar, main etc no luck
you sure there ain't any conflict between these codes and they should work together without any trouble?
 
Last edited:
first you have to make sure your links are clickable.
so we have to laod this script.
now have "normal" links in the html-file
and we can add infolinks on top.

Remove the other installs of DLE-clickable-links and infolinks and add this code to your footer/add-slot
Code:
<!-- configure infolinks -->
<script type="text/javascript">
var infolinks_pid = 249417;
var infolinks_wsid = 0;
</script>

<!-- configure DLE -->
<script src=" http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>


<!-- initiate scripts in right order -->
<script type="text/javascript" src="http://your-site.com/link.js"></script>
<script type="text/javascript" src="http://resources.infolinks.com/js/infolinks_main.js"></script>

this *should* work. assuming the DLE-linkadder is working and infolinks don't do some strange thins in their js
replace your-site.com with your site-url
 
Status
Not open for further replies.
Back
Top