dolfelt
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: ICS Calendar] error in plugin page urlLink has been removed. Unfortunately, I do not have time to make a plugins page at my website.
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Need to say ‘No Events’ when there are noneOk, I have fixed all the errors you mentioned. The first one was a glitch with the ics parsing function. The second had to do with the way that the events were printed onto the page.
Both of these should be fixed. Let me know if there are any other problems.
Forum: Plugins
In reply to: [Plugin: ICS Calendar] *.ics-file can’t be updated which never has been existAre you sure that the .ics file is being shared within Google? If you copy the URL to your browser, the ics file should show up as text within the browser. I know this works with Google, since that is what I developed it with.
Forum: Fixing WordPress
In reply to: Remove dupe listing of static page from wp_list_pages displayYou could always do something like this, which would allow anyone to use it without changing the template:
$options_wp_list = 'title_li=&depth=1&sort_column=menu_order'; if(get_option('show_on_front')=='page') { $options_wp_list .= '&exclude=' . get_option('page_on_front'); } wp_list_pages($options_wp_list);That checks to see if a page is set as the static front page, and if it is, it excludes it from the list.