boudewijnvl
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: An Unexpected HTTP Error occurred during the API request on WordPress 3Thanks Dion, Had the same problem and it is solved!!!
great
Forum: Themes and Templates
In reply to: New WP3 Twenty Ten child themeHi,
I am useing your theme and it works great only one question.
I like to use some WordPress functions in the header to set a different background picture on every page.
Only the php code doesn’t work it just appears in de html as coded.
Is there a way to do use php code through the advanced options header section?Hope you can help.
Greetings,
Boudewijn
Forum: Plugins
In reply to: Looking for a Newsletter PluginHi Guys,
Maybe you should checkout http://wordpress.org/extend/plugins/newsletter/
I think it is exactly what you need.Greetings,
Boudewijn
Forum: Plugins
In reply to: [Register Plus Plugin 3.5.1] date field bugHi,
I had the same problem. I tried the fix above and it works for me. I am running on 2.7.1 The only thing is remove the calender selection because I use it for birthdays and starting in 2009 is not handy.
Greetings,
Boudewijn
Forum: Fixing WordPress
In reply to: Menu in sidebar: grandchildren show wrong menuHi everybody,
Ik had the same problem and solved it like this:
$children = wp_list_pages("title_li=&child_of=".getTopParentPostid($post->ID)."echo=0");using the function:
//return the id of the top parent page base on a page_id function getTopParentPostID($myid){ $mypage = get_page($myid); $myid = $mypage->post_parent; $mypage2 = get_page($myid); if ($mypage2->post_parent == 0){ return $myid; } else{ return getTopParentPostID($myid); } }you can se the result at http://www.swingclose.nl
hope this helps.