Okay
  Public Ticket #3135229
notifications
Closed

Comments

  • jason started the conversation

    Is there an option/feature so I can get notified when a user edits a form (frontend) ? I didn't see you integrated with zapier or similar.

    I'm creating tables where I need user input but how do I know when they've edited their table?

    Thanks.

  •  1,701
    Miloš replied

    Hi, jason

    Thanks for reaching out to us.

    We don't have a built-in solution for something like this, 

    if you wish to see a built-in solution,

    Please feel free to search on our suggestions page

     to see if someone may be already suggested this feature. If you can't see it, feel free to add your suggestion there,  and as more people vote, the feature will move higher on the priority list.

    You can certainly follow our changeLog page if you'd like ( it is also available in the plugin dashboard), where we state any changes/new features/bug fixes during updates;

    and our newsletter, so you're informed about new features, bug fixes, freebies, etc.

    -

    At the moment, here is a custom workaround that you can try, if you have coding skills.

    -

    For sending emails, you can use this:

    https://www.a2hosting.com/kb/installable-applications/optimization-and-configuration/wordpress2/sending-e-mail-in-wordpress#:~:text=To%20send%20an%20e%2Dmail,authentication%20settings%20you%20defined%20above

    And to take values after Apply is hit, there's this hook:

    wpdatatables_after_frontent_edit_row( $formdata, $rowId, $tableId ) This action is executed after editing action is applied.

    $formdata is the array of keys and values for editing.

    $rowId is the ID field of the row in MySQL table that was edited.

    $tableId is the table identifier from the MySQL plugin table (wp_wpdatatables).

    For example:

    function sendEmailAfterEdit( $formdata, $rowId, $tableId ){ 
    // create logic for sending emails
    }
    add_action('wpdatatables_after_frontent_edit_row', 'sendEmailAfterEdit',10,3);

    will be triggered in both cases when you edit or adding a new row in the table from front-end. Please note that data is already saved in database.

    -

    Please note that for solutions like this, we can not provide troubleshooting, it is just limited to advice.

    -

    And, just wanted to point out that we have a Demo Sandbox site, where you can try out the plugin functionalities, on this link

    and there is a 15-day money-back guarantee period, So if you purchase the plugin, you can safely fully test it out, and if it doesn't fit your needs you can request and receive a refund in that period. ( same goes for all plugins and add-ons)

    Kind Regards, 

    Miloš Jovanović
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables