Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Kris – WPMU DEV Support

    (@wpmudevsupport13)

    Hi @nawac

    I hope you are doing well today.

    I pinged our Forminator Team to fully review our query and see what has changed from that time. Thank you for your patience while we look into this further. We will post an update here as soon as more information is available.

    Kind Regards,
    Kris

    Plugin Support Kris – WPMU DEV Support

    (@wpmudevsupport13)

    Hi again @nawac

    I have an update from our Forminator Team and method?Forminator_Form_Entry_Model::list_entries() was removed and is no longer available from version 1.36.

    You can use?Forminator_Form_Entry_Model::query_entries()?as an alternative.

    Example:

    $args = array(
    'form_id' => 100,
    'is_spam' => 0,
    'per_page' => 10,
    'offset' => 0,
    );
    $count = 0;
    $entries = Forminator_Form_Entry_Model::query_entries( $args, $count );

    Hope this helps.

    Kind Regards,
    Kris

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