blueyonder
Forum Replies Created
-
Forum: Plugins
In reply to: [Form - Contact Form] Form Time Out, Not UploadingSent 🙂
Forum: Plugins
In reply to: Widget Logic- Page Template not workingOh. I was wrong.
Adding <?php wp_reset_query(); ?> woorked, but it reset the page so that my other code` <?php
$page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(“cat=10&showposts=5&paged=$page”);
?>` didn’t work 🙁I guess I can’t have both?
Forum: Plugins
In reply to: Widget Logic- Page Template not workingThanks Greenshady! That worked.
The weird thing is that the ‘wp_reset_query’ option (at the foot of the widget admin page) didn’t work, but it did work once I added it to my page template.
Thanks both of you for all your help!!!
Forum: Plugins
In reply to: Widget Logic- Page Template not working!is_page(146) still doesn’t work 🙁
It does work if I remove the code from the page template, but I really need that code in there. Hmmm…
Forum: Plugins
In reply to: [Plugin: WP-Polls] WP Polls Start Date/Time not workingI looked up wp-cron and most people seem to be having problems with it and scheduling future posts. We can schedule future posts no problem. I wonder if that is really our problem.
Thanks for all your help!
Forum: Plugins
In reply to: [Plugin: WP-Polls] WP Polls Start Date/Time not workingI talked to my host and they said that they do not block wp-cron. Hm. Any way I can fix this myself?
Thanks!
Forum: Plugins
In reply to: [Plugin: WP-Polls] WP Polls Start Date/Time not workingThanks! I will ask my hosting people if they block it.
Forum: Fixing WordPress
In reply to: Only one category showing on every pageNevermind. I added a new query like in Example 1 vers.3
http://codex.wordpress.org/The_Loop#Multiple_Loops_Example_1
Forum: Fixing WordPress
In reply to: Strikethrough not working on excerptsOk. I figured out that if I need to retain formatting, I need to just put the code into the “Excerpt” box for the post. Bummer that there is an extra step, but it worked.