Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author fried_eggz

    (@fried_eggz)

    Delete should work. Are you able to wiew/edit entries?

    You can use the filter_entries filter to add the post status to the list like so:

    Add a field to your form, give it the name “Status” and note the ID of that field. Then add this code to your functions.php

    add_filter('filter_entries','add_entry_id' );
    function add_entry_id($entries) {
        foreach ($entries as &$entry) {
            $entry["xxx"] = get_post_status($entry["post_id"]);
        }
        return $entries;
    }

    Change xxx in the code above to the ID of your new field.

    Plugin Author fried_eggz

    (@fried_eggz)

    I have not heard back from you. Ill mark this as resolved. Please feel free to reopen should you still have issues.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Delete button dont work’ is closed to new replies.