wenzlerm
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: WP-dTree] Foreign charactersProblem found, its related to wp_dTree.prototype.htmlEntities in dtree.php Version 2.5 line 180
wp_dTree.prototype.htmlEntities = function(str) { // FIX WENZLERM Archive Umlaute (M?rz) // str=str.replace(/\&/g,'\&'); str=str.replace(/\"/g,'\"'); str=str.replace(/\</g,'\<'); str=str.replace(/\>/g,'\>'); return str; }
Seems that my
ä
gehts somehow translated to&auml
Escaping is probably necessary as in the function above, but here it is somehow called twice I guess…
Have fun, Ben!
Forum: Fixing WordPress
In reply to: [Plugin: WP-dTree] Foreign charactersI have a similar problem. In archives the month March in a German run blog is displayed ‘M& auml; z’ instead of ‘M?rz’
<a class="node" title="März" href="javascript: a.o(2);">März</a>
Any ideas how to fix this?
Forum: Requests and Feedback
In reply to: [Plugin: WP-dTree 3.3.2] Translate monthsI have a similar problem. In archives the month March in a German run blog is displayed ‘M& auml; z’ instead of ‘M?rz’
<a class="node" title="März" href="javascript: a.o(2);">März</a>
Any ideas how to fix this?
Forum: Plugins
In reply to: [Plugin: WP-dTree 3.3.2] Fatal error in WP 2.5Forget all postings above, it’s already there with option ‘Folders are links’
Forum: Plugins
In reply to: [Plugin: WP-dTree 3.3.2] Fatal error in WP 2.5Sorry Ulfben, last postings are wrong formated. To keep it short:
It would be nice to have
<a href="..." onclick="javascript:p.o(...)></a>
in ‘Pages’ for nodes with childrenForum: Plugins
In reply to: [Plugin: WP-dTree 3.3.2] Fatal error in WP 2.5Hi Ulfben
I just tested WP-dTree-3.4-beta.zip and came across a problem for parent nodes in ‘Pages’.
The parent node (below ‘Node with children’) does only have a url to navigate to:
<div class="wp_dTreewp_dtree_Node"> <a href="javascript: p.o(3);"></a> <a class="node" title="Node with children" href="javascript:p.o(3);">über uns</a> </div>
I would suggest changing it to
<a class="node" title="Node with children" <strong>href</strong>="..." <strong>onclick</strong>"javascript:p.o(3);">über uns</a>
Forum: Plugins
In reply to: [Plugin: WP-dTree 3.3.2] Fatal error in WP 2.5Hi Ulfben
I just tested WP-dTree-3.4-beta.zip and came across a problem for parent nodes in ‘Pages’.
The parent node (below ‘Node with children’) does only have a url to navigate to:
<div class=”wp_dTreewp_dtree_Node”>
über uns
</div>I would suggest changing it to
href=”…” onclick“javascript:p.o(3);”>über uns