Expired Galleries not listed under "all"

HomeSupportImage StoreExpired Galleries not listed under "all"

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #52647
    Leanne
    Participant

    I am trying to renew galleries and they’re listed in the number count but not showing up on the page.  Where’d they go?  They’re still on the server.

    #52652
    rtb1982
    Participant

    I 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.

    #52659
    Xpark Media
    Keymaster

    @Leanne @rtb1982

    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 );
    #52682
    Leanne
    Participant

    Thanks for the fix – that worked.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.