cozbaldwin, I’m currently using Thesis 1.8.4
I commented out line 184 (read this in the comments)
@ljuba – I had the same issue, or so I think. Kept saying “No attachments found.” I commented out line 184 in wp-content/plugins/ajax-thumbnail-rebuild/ajax-thumbnail-rebuild.php. I don’t know if its the theme I’m using or what, but it does not like the post_parent = null setting.
$attachments =& get_children( array(
‘post_type’ => ‘attachment’,
‘post_mime_type’ => ‘image’,
‘numberposts’ => -1,
‘post_status’ => null,
//’post_parent’ => null, // any parent
‘output’ => ‘object’,
) );
So it started working, but it only reads that I have 110 images, I have over 5,000+ images o_O? By any chance do you know how to fix this?