Keith S.
Forum Replies Created
-
Strange. It does in fact work on the demo site, but it doesn’t on the one we’re building. Don’t see anything in the console indicating an error.
I’m not surprised…the way my luck goes, if there’s an oddball problem that no one has ever encountered before, I’m gonna be the guy who finds it. ??
Thanks for all your help. You guys went above and beyond on this, and I appreciate it.
Sorry for not getting back to you sooner…I was off on vacation, and just got back last night. I’ll try to grab you a database dump today and email it over.
It always changes. If you were to wait (for example) an hour, and refresh the page, the start and end times would show today’s date with whatever time you loaded the page.
Just sent you an email. Thanks.
I don’t think it’s dummy content, simply from the fact that dates change to reflect the loading time of the page. For example, my machine currently shows the time as 8:51 PM (CDT) August 20. When I load the events list page, it shows the bogus events with a start and end date of August 20th, 2012 9:51 PM (EDT, our server is hosted in Atlanta, and the client is in New York).
See screenshot here: https://o7.no/NZHeUM
And it will do this repeatably on every reload of the page.
I have been through the database with a fine-toothed comb, and can’t find anything that would cause this issue.
As far as I know, it’s been doing this since day one (which is strange, because we have it on another site where we don’t have this issue). And the only actual event listed in the plugin admin is the January 2013 one.
We’re not running any custom post types, and the only other plugins running on the site are Akismet, Bad Behavior, TinyMCE Enhanced, and WP Remote, none of which changed anything when I disabled them.
Forum: Everything else WordPress
In reply to: Categories not showing up on CTC Tag Cloud WidgetYou can now choose to show categories in the cloud (as of version 4 of the plugin). It will always show tags, but if you want, you can use categories too.
Forum: Fixing WordPress
In reply to: sapotages other pluginsDo you have a link to your plugin (the one that’s not working with the WYSIWYG widget)? I have the WYSIWYG text widget installed on my sandbox blog, and I haven’t yet found a plugin that it doesn’t work with.
Forum: Fixing WordPress
In reply to: Next and previous post linksWell, for those that may have the need for something like this, I decided to hack up the next_post and previous_post functions and roll them into a plugin.
As far as I’m aware, this is the only plugin of this sort for WordPress. If you’re looking for something like this, point your browser at https://reciprocity.be/plr and grab a copy for yourself.
Forum: Fixing WordPress
In reply to: Multiple Loops questionOk, I figured it out. I had to stick the original query into a temporary variable in my template. My index.php now looks like this…
<!-- Begin Index.PHP --> <?php $temp_query = $wp_query; ?> <?php get_header(); ?> <?php get_sidebar(); ?> <div id="content"> <?php $wp_query = $temp_query; ?> <?php while (have_posts()) : the_post(); ?> <h2><?php the_title(); ?></h2> <?php the_content("Continue reading " . the_title('', '', false)); ?> <?php endwhile; ?> </div> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Looking for a coder to work togeatha and make a themeI can knock something together for you. Drop me an email at [email protected] with the specifics.