Quote:
Originally Posted by kadafi_alive
Hi Andrew,
Could you please tell me what I part I have to put in. I have tried adding the link but it gives me errors.
In local_links_include.php i find:
$linktypebit .= '<a href="'.$LINKS_SCRIPT.'.php?action=play&id='.$ linkid.'" target="player" onclick="ldmpopup(this.href);return false;">';
$linktypebit .= '<img border="0" src="'.$icon_cache[$urlType].'" alt="'.$vbphrase['ll_playme'].'" />';
$linktypebit .= '</a>';
how do I insert the jump code. Thanks in advance
|
I think I misunderstood your question. Am I right, you *only* want to have url's that display the 'action=play' link, and you do not want to have any 'action=jump' links? In this case, edit the links_linkbit template (or the links_linkbit_table template, if you use that layout for links). Find the two lines which read
Code:
$linktypebit
$linkurljump
and change these to read
Code:
$linktypebit
<a href="$LINKS_SCRIPT.php?action=play&id=$linkid" target="player" onclick="ldmpopup(this.href);return false;">$linkname</a>
If I'm not understanding your question, perhaps you can send me a PM to explain.