drummergirl
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Stumped: Custom Post Featured Image Box Not ShowingThanks for checking. I’m going to clone the whole site to my test server for debugging. Ugh.
Forum: Plugins
In reply to: [Yoast Breadcrumbs] Yoast breadcrumbs and custom post typeMake sure you have this in your custom post function:
'has_archive' => true,
Once you have that in place, the Yoast SEO plugin will let you select the custom post type as the parent page.
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache Refresh QuestionOk – did some more digging. I am noticing that any of the pages displaying my products are not generating supercache files. Normal pages, contact forms and blog posts all generate a supercache file. Any page that displays my products (from a feed) are not generating a supercache page.
To be certain this is the pattern, I loaded one blog post that also had a product feed. It did not generate a supercache page – only a folder. I then loaded another blog post with no products and it did generate a supercache file.
Is there a way to make supercache generate a file for these types of pages? Why is it not generating the file?
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache Refresh QuestionOk – here’s an update… I reset everything and it seemed to be working fine as I tested it throughout the afternoon and evening yesterday from various devices.
This morning I checked those same pages again, and now those same custom taxonomy pages that were showing as cached yesterday, are no longer being cached again.
I still get the message “Supercache disabled: GET or feed detected or disabled by config.” and when I look into my ftp directory, no supercache files are being generated for those pages. The folders are there, but they are empty.
In fact, it seems that all of the folders were wiped out at some point and the only ones there now are the ones I clicked on this morning during my test.
Can you help me figure out why those pages are not caching properly or not staying cached? I am stumped.
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache Refresh QuestionI now have a message at teh top of the supercache settings that says Couldn’t resolve host ‘www.girlscantwhat.com’
The site loads fine on the front end.
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache Refresh QuestionOK – nevermond – the settings are right….but this is what the logs show now when I click on a page…
17:59:45 /gifts-for-girls/baseball/ Output buffer callback
17:59:45 /gifts-for-girls/baseball/ Supercache disabled: GET or feed detected or disabled by config.
17:59:45 /gifts-for-girls/baseball/ Gzipping buffer.
17:59:45 /gifts-for-girls/baseball/ Writing gzipped buffer to wp-cache cache file.
17:59:45 /gifts-for-girls/baseball/ Renamed temp wp-cache file to /home/girlcaw6/public_html/wp-content/cache/wp-cache-e43439074a6f7462af568c98e38e8184.html
17:59:45 /gifts-for-girls/baseball/ Writing gzip content headers. Sending buffer to browser
17:59:45 /gifts-for-girls/baseball/ wp_cache_shutdown_callback: collecting meta data.
17:59:45 /gifts-for-girls/baseball/ Writing meta file: /home/girlcaw6/public_html/wp-content/cache/meta/wp-cache-e43439074a6f7462af568c98e38e8184.metaWhy is it saying SuperCache is disabled?
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache Refresh QuestionUhh – it looks like all my settings got reset? What would cause that?
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache Refresh QuestionOk – ran into a snag I guess. Just went back to check my site and the pages that were previously cached this morning when I checked, are no longer cached. ??
I am not logged in to the site, but they are taking forever to load again. Am I missing something obvious?
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache Refresh QuestionThanks Donncha – I appreciate the clarification.
I’ll keep an eye on it for a few days and make sure the product pages are still loading quickly. I think I’ve got things set the way I need them now. ??
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Supercache Refresh QuestionThanks – I do have those set. I guess my real concern is that when those pages expire, will another one immediately be generated by the plugin or will that happen only when the page is hit again?
I want to be absolutely certain that my visitors (and bots) are hit with a cached page at all times because of the uncached (product) page being such a beast to load uncached.
Based on the recommendations, I have my settings as:
Cache timeout: 0
Timer: 86400Pre-load Refresh: 86400
Preload mode: checked
Preload tags, categories and other taxonomies: checkedDoes this look correct for what I need?
Same problem here and I did the same steps as listed above. This is on a child theme of twenty-eleven. Works fine on my other sites using different themes.
Forum: Themes and Templates
In reply to: Display Custom Posts by Term in HierarchyFor the record, this actually spits out what I need, but the terms are sorted alphabetically and not in a hierarchy like I have set up in the dashboard.
<?php //for a given post type, return all taxonomies attached to it $post_type = 'gifts'; $tax = 'relationship'; $hierarchical = 1; $tax_terms = get_terms($tax); if ($tax_terms) { foreach ($tax_terms as $tax_term) { $args=array( 'post_type' => $post_type, "$tax" => $tax_term->slug, 'post_status' => 'publish', 'posts_per_page' => -1, 'hierarchical' => $hierarchical, 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { echo ' <h3>'.$tax_term->name.'</h3>'; while ($my_query->have_posts()) : $my_query->the_post(); ?> <a href="<?php the_permalink();?>"><?php the_title();?></a> <?php endwhile; } wp_reset_query(); } } ?>
I don’t use the WP-FB-AutoConnect plugin anymore. Sorry.
That’s kind of what I figured. I’m about halfway through replacing the product images.
Fortunately I have them all saved elsewhere and I don’t have to go dig through my uploads directory to find each one.
Thanks Sergey – I just queried the database and there are no results for _wp_attached_file.
The only records with a meta_ID 9560 has the meta key “_edit_lock”
Should I just rebuild these thumbnails manually or is there a way to salvage what I have?