gast0n
Forum Replies Created
-
Forum: Plugins
In reply to: Page numbering like in this forum?Thanks alot Truth!
😀 Will dig into it right away!
Forum: Plugins
In reply to: �Update: ChenPress 3.1.1】Got it fixed..
changed:
$fckeditor_path = “../wp-content/plugins/chenpress/FCKeditor/”to:
$fckeditor_path = “../wp-content/plugins/chenpress/fckeditor/”My old directory whan in lowercase 😀
Forum: Plugins
In reply to: ã€?Update: ChenPress 3.1.1】Doesn’t work for me. 3.0 did so. Chen won’t show in editor window. Got this Javascript error:
Line: 202
Error: ‘FCKeditor is undefined’
Code: 0wp-admin/plugins.php
Anyone knows whats causing this?
Thanks! /Andreas
Forum: Themes and Templates
In reply to: context aware sidebarTook me some time to find this topic and the function listed above.. Made som changes to track back one level.. don’t know if it’s the best solution but i works for me..
….foreach ($pages as $page)
{if ($page->ID == $page_obj->ID && $page->post_parent == $id)
{
return true;
}// Track back..
if ($page->ID == $page_obj->ID)
{
$check1 = $page->post_parent; // get current post_parent
foreach ($pages as $page)
{if ( $page->ID == $check1 && $page->post_parent == $id)
return true;
}
}}…..
/ Andreas