timcooperhouse
Forum Replies Created
-
Thank you @daveshu1234. This was driving me nuts!
This answer needs to find its way to a lot of other threads out there on this subject, I suspect.I’m seeing evidence of the same problem.
I created a new post type and allowed it to use a couple taxonomies used by woocommerce and the result is that the taxonomy pages don’t show anything at all!Forum: Plugins
In reply to: [Videopack] Plugin selecting wrong featured images (WTF?)phattrance et al,
This aligns with the WordPress logic.
Media is not attached to a post just because its inserted into its content. It has to be uploaded from that post. This plugin probably requires it to be attached.Forum: Plugins
In reply to: [Cache Images] [Plugin: Cache Images] Error 500 for PhotobucketI’ve been having the same problem with Photobucket. I did a lot hacking around to determine that it may not be photobucket per say. It may just be that we have so many images from one domain! I found that it will actually do some sideloading if you edit line 338 of the plugin from:
$postid_list = $wpdb->get_results(“SELECT DISTINCT ID FROM $wpdb->posts WHERE post_content LIKE (‘%<img%’) AND post_content LIKE (‘%$domain%’)”);
TO:
$postid_list = $wpdb->get_results(“SELECT DISTINCT ID FROM $wpdb->posts WHERE post_content LIKE (‘%<img%’) AND post_content LIKE (‘%$domain%’) LIMIT 100”);
Perhaps without the LIMIT in the ajax query or the json encoding of the resulting array is choking on the sheer magnitude of the results.Good luck!