• Hello, I’ve got a problem with WCFM and a custom post status. I’ve made 2 custom post status: Approved & Declined. Now, I’ve found on the forum ( https://ww.wp.xz.cn/support/topic/show-custom-product-status/ ) a snippet you have write to a user:

    add_filter( ‘wcfmu_products_menus’, function( $wcfmu_products_menus ) {
    $wcfmu_products_menus[‘custom-hide-product’] = __( ‘Approved’, ‘wc-frontend-manager’);
    return $wcfmu_products_menus;
    }, 50);

    But when I change ‘custom-hide-product’ for my slug I mean approved I can see in the menu of the product Approved() but WCFM can’t retrieve the product. It says No data in the table. I’m using the plugin Extended Post Status to create my custom post status. Can you help me with this?

The topic ‘Custom Post Status’ is closed to new replies.