| Re: Wflinks - Mysql/Template Error |
| by McDonald on 2009/1/22 10:56:19 Found a small typo in WF-Links 1.07 that causes new links not to be displayed correctly on the Index Page. To fix this open the file ../templates/wflinks_index.html and find this line: le="color: #000000"><?php <{include file="db:wflinks_linkload.html" link=$link[i]}> Replace the above line with the following: le="color: #000000"><?php <{include file="db:wflinks_linkload.html" wfllink=$link[i]}> Save the file, upload it to your server and update WF-Links from the Module Administration. |
| Re: Wflinks - Mysql/Template Error |
| by McDonald on 2008/12/14 22:31:52 I've updated WF-Links to version 1.07 which is mainly a maintenance release. In version 1.07 I've made changes to the templates (viewcat and linkload) which should prevent the mysterious links in viewcat. Als some other fixes have been added. You can download WF-Links 1.07 Final here. Changelog - Fixed: mysterious links in catview - Fixed: setting 'total amount of characters for description' - Fixed: unclosed div-tag in wflinks_viewcat.html - Fixed: unclosed div-tag in wflinks_print.html - Fixed: body-tag declared twice in wflinks_print.html |
| Re: Wflinks - Mysql/Template Error |
| by FDSG on 2008/12/10 10:33:23 It works! Thank you. Finally, it worked! Thank you |
| Re: Wflinks - Mysql/Template Error |
| by McDonald on 2008/12/10 0:03:50 Here's the solution I have for the moment. It's a fix for DH-INFO. Open the file ../modules/info/templates/blocks/info_nav_block.html in an editor and replace ALL content with the following: le="color: #000000"><?php <table style="width:100%;" summary="Block"> <tr> <td id="mainmenu"> <{foreach item=ilink from=$block.links}> <{if $ilink.kategorie}> <{if $ilink.parent == 0}> <{if $ilink.click == 1}> <a class="menuMainKat" href="<{$ilink.address}>" title="<{if $ilink.tooltip}><{$ilink.tooltip}><{else}><{$ilink.title}><{/if}>"><{$ilink.title}></a> <{else}> <a class="menuMainKat"><{$ilink.title}></a> <{/if}> <{else}> <{if $ilink.click == 1}> <a class="menuSubKat" href="<{$ilink.address}>" title="<{if $ilink.tooltip}><{$ilink.tooltip}><{else}><{$ilink.title}><{/if}>"><{$ilink.title}></a> <{else}> <a class="menuSubKat"><{$ilink.title}></a> <{/if}> <{/if}> <{else}> <{if $ilink.parent == 0}> <{if $ilink.aktiv}> <a class="menuMainActive" href="<{$ilink.address}>" title="<{if $ilink.tooltip}><{$ilink.tooltip}><{else}><{$ilink.title}><{/if}>" <{if $ilink.target}>target=<{$ilink.target}><{/if}>><{$ilink.title}></a> <{else}> <a class="menuMain" href="<{$ilink.address}>" title="<{if $ilink.tooltip}><{$ilink.tooltip}><{else}><{$ilink.title}><{/if}>" <{if $ilink.target}>target=<{$ilink.target}><{/if}>><{$ilink.title}></a> <{/if}> <{else}> <{if $ilink.aktiv}> <a class="menuSubActive" href="<{$ilink.address}>" title="<{if $ilink.tooltip}><{$ilink.tooltip}><{else}><{$ilink.title}><{/if}>" <{if $ilink.target}>target=<{$ilink.target}><{/if}>><{$ilink.title}></a> <{else}> <a class="menuSub" href="<{$ilink.address}>" title="<{if $ilink.tooltip}><{$ilink.tooltip}><{else}><{$ilink.title}><{/if}>" <{if $ilink.target}>target=<{$ilink.target}><{/if}>><{$ilink.title}></a> <{/if}> <{/if}> <{/if}> <{/foreach}> </td> </tr> </table> Save the file, upload the file, update DH-INFO and clear templates_c folder except the file index.html. |
| Re: Wflinks - Mysql/Template Error |
| by FDSG on 2008/12/9 13:57:52 I will make very grateful. |