You know, actually this time i needed to revert templates, there seem to be many corrections and new addons in them.
Now, i made a two icon links_favbit... huh? yeah, two stages, if it's in the favorite, then it shows an icon with a minus, letting the user know he/she can delete it from favorites.
Now, if i click, it returns me to the category... is it possible to make it ajax and avoid that redirection? :tired:
Have never played with ajax, i'd need some help
Here is the template, i removed the highlight, but it can be added with no problem.
Oh and i used my templates misc folder, i had no idea how to call the LDM folder
Code:
<if condition="$linkfav and $viewcatid!=-2">
<a href="$ACTION_SCRIPT.php?action=dofavlink&id=$linkid&set=<if condition="$linkfav">-1<else />1</if>&catid=$linkcatid&page=$pagenumber" title="<if condition="$linkfav">$vbphrase[ll_myfav_del]<else />$vbphrase[ll_myfav_add]</if>">
<img class="inlineimg" src="$stylevar[imgdir_misc]/ll_favdel.gif" title="<if condition="$linkfav">$vbphrase[ll_myfav_del]<else />$vbphrase[ll_myfav_add]</if>" alt="<if condition="$linkfav">$vbphrase[ll_myfav_del]<else />$vbphrase[ll_myfav_add]</if>
" border="0" /></a>
<else />
<a href="$ACTION_SCRIPT.php?action=dofavlink&id=$linkid&set=<if condition="$linkfav">-1<else />1</if>&catid=$linkcatid&page=$pagenumber" title="<if condition="$linkfav">$vbphrase[ll_myfav_del]<else />$vbphrase[ll_myfav_add]</if>">
<img class="inlineimg" src="$stylevar[imgdir_misc]/ll_favadd.gif" title="<if condition="$linkfav">$vbphrase[ll_myfav_del]<else />$vbphrase[ll_myfav_add]</if>" alt="<if condition="$linkfav">$vbphrase[ll_myfav_del]<else />$vbphrase[ll_myfav_add]</if>
" border="0" /></a>
</if>