Bring Your Business to Life › Support › Image Store › Expired Galleries not listed under "all"
Viewing 3 posts - 1 through 3 (of 3 total)
- AuthorPosts
- April 10, 2013 at 10:17 am #52652
rtb1982
ParticipantI had the same issue after i updated my dev site to 3.2.5 all of the galleries i had were removed but they do show up under the count and the images were still on the server. I would like to know how to resolve this as well before upgrading to a new version since I have quite a few galleries.
April 11, 2013 at 10:04 pm #52659Xpark Media
Keymasterwe can confirmed that this is an issue will try to provide a fix an update this weekend,
if you need a quick fix add this code to your theme’s functions.php file or to a module
function register_ims_post_status(){ register_post_status( 'expire', array( 'label' => _x( 'Expired', 'post' ), 'public' => false, 'exclude_from_search' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'label_count' => _n_noop( 'Expired (%s)', 'Expired (%s)' ), ) ); } add_action( 'init','register_ims_post_status',50 );
April 13, 2013 at 8:39 am #52682Leanne
ParticipantThanks for the fix – that worked.
- AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.