Bring Your Business to Life › Support › Image Store › Expired Galleries not listed under "all" › Reply To: Expired Galleries not listed under "all"
April 11, 2013 at 10:04 pm #52659
Keymaster
we 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 );