citizenkeith
Forum Replies Created
-
Forum: Plugins
In reply to: [10WebPlayer] Loading Incorrect Main VideoHello,
I have selected channel. Ordered by “Relevance” which seems is my only option for the unpaid version. Was this previously an option available to me?
Forum: Themes and Templates
In reply to: [Platform] bbPress StylingFor now, I’m just linking to a “General Discussion” forum, but I want to add additional forums. But I can’t until the styling in Platform can be fixed on the main page.
Forum: Themes and Templates
In reply to: [Platform] bbPress StylingI don’t think so. Here’s what a forum looks like:
http://imgur.com/UxuO0I don’t see why one would be minimalistic and the other not.
Hi Angelo,
Thank you. I made the change that you suggested and it seems to work fine now. I notified the plugin developer so perhaps that can be updated in the future.
Keith
Forum: Plugins
In reply to: [Simply Poll] Simply Poll not displaying resultssI’m going to wait on this until our poll is over. I’m still using 1.3.4 with a modified 404 page. I know that’s kinda lame but it will do for now. I’ll test 1.4.1 as soon as possible.
Forum: Plugins
In reply to: [Simply Poll] Simply Poll not displaying resultssFatal error: Call to a member function logVar() on a non-object in /html/wp-content/plugins/simply-poll/lib/submit.php on line 7Forum: Plugins
In reply to: [Simply Poll] Simply Poll not displaying resultssNew error:
Warning: require() [function.require]: http:// wrapper is disabled in the server configuration by allow_url_include=0 in /html/wp-content/plugins/simply-poll/page/client/display.php on line 12 Warning: require(http://www.wvko1580.com/wp-content/plugins/simply-poll/page/user/poll-results.php) [function.require]: failed to open stream: no suitable wrapper could be found in /html/wp-content/plugins/simply-poll/page/client/display.php on line 12 Fatal error: require() [function.require]: Failed opening required 'http://www.wvko1580.com/wp-content/plugins/simply-poll/page/user/poll-results.php' (include_path='.:/usr/local/php-5.3.6/share/pear') in /html/wp-content/plugins/simply-poll/page/client/display.php on line 12I’ll be around later if you want to shoot another update at me.
Forum: Plugins
In reply to: [Simply Poll] Simply Poll not displaying resultssSure! I’m here for a bit, so I can do another test.
Forum: Plugins
In reply to: [Simply Poll] Simply Poll not displaying resultssNew error when viewing the poll using your latest beta:
Warning: require(SP_URIpage/user/poll-results.php) [function.require]: failed to open stream: No such file or directory in /html/wp-content/plugins/simply-poll/page/client/display.php on line 12 Fatal error: require() [function.require]: Failed opening required 'SP_URIpage/user/poll-results.php' (include_path='.:/usr/local/php-5.3.6/share/pear') in /html/wp-content/plugins/simply-poll/page/client/display.php on line 12Forum: Plugins
In reply to: [Simply Poll] Simply Poll not displaying resultssThanks WolfieZero. You were fast with a response! I just edited my post with a little more information.
Forum: Plugins
In reply to: [Simply Poll] Simply Poll not displaying resultssI’m having some issues. Here is the website:
http://www.wvko1580.comI’m getting a 404 error with 1.3.4. The results, however, are still recorded. This is the URL that I’m redirected to after voting, which shows 404:
BTW, I changed our 404 template to say “Thanks for Voting” since we’re only going to have this poll up for a few days. 🙂
When I use the beta 1.4, I get this error in place of that actual poll on the page:
Warning: require(SP_URIpage/user/poll-results.php) [function.require]: failed to open stream: No such file or directory in /html/wp-content/plugins/simply-poll/page/client/display.php on line 18 Fatal error: require() [function.require]: Failed opening required 'SP_URIpage/user/poll-results.php' (include_path='.:/usr/local/php-5.3.6/share/pear') in /html/wp-content/plugins/simply-poll/page/client/display.php on line 18Forum: Plugins
In reply to: [Plugin: Twitter for WordPress] No public Twitter messages.kwick,
Care to enlighten us with a link?
Forum: Plugins
In reply to: Twounter & BBpressvalendesigns,
Care to post your plugin on the bbPress site?
Forum: Plugins
In reply to: Podpress plugin showing wrong podcast locationsI disabled podpress statistics. The link switched back to the correct link after I did that.
Forum: Everything else WordPress
In reply to: Timed Images CodeSorry, posted the wrong code. And it’s not working. 🙁
<img src="http://www.domain.com/picture<?php $now = getdate(); $hour = $now['hours']; $weekday = $now['wday']; // 0 = Sun, 6 = Sat if ($hour >= 1 && $hour < 4 && $weekday >= 2) { $timepic = '0100pic'; } elseif ($hour >= 6 && $hour < 9 && $weekday >= 1 && $weekday <= 5) { $timepic = '0600pic'; } elseif ($hour >= 9 && $hour < 12 && $weekday >= 1 && $weekday <= 5) { $timepic = '0900pic'; } elseif ($hour >= 12 && $hour < 15 && $weekday >= 1 && $weekday <= 5) { $timepic = '1200pic'; } elseif ($hour >= 15 && $hour < 17 && $weekday >= 1 && $weekday <= 5) { $timepic = '1500pic'; } elseif ($hour >= 17 && $hour < 18 && $weekday >= 1 && $weekday <= 5) { $timepic = '1700pic'; } elseif ($hour >= 18 && $hour < 20 && $weekday >= 1 && $weekday <= 5) { $timepic = '1800pic'; } elseif ($hour >= 20 && $hour < 23 && $weekday >= 1 && $weekday <= 5) { $timepic = '2000pic'; } elseif ($hour >= 23 || $hour < 16 && $weekday >= 1 && $weekday <= 5) { $timepic = '2300pic'; } else { $timepic = 'nobody'; } echo $timepic; ?>.jpg" alt="On The Air Now" />I want every image to appear Monday through Friday only, except 0100pic which will appear Tuesday through Saturday. All other times the default “nobody” image will appear.
The time of day is working correctly, but the day of the week isn’t working. It’s Saturday, and all the regular images are showing.