• Resolved olivier1378

    (@olivier1378)


    Hello

    Is possible to use an other table than _posts to save informations about uploaded images (fileneme, date…) ?

    A new table for this function (I create this table)

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Glen Don Mongaya

    (@glenwpcoder)

    Hello @olivier1378 ,

    Yes, it’s possible but that’s requires custom coding, currently our plugin doesn’t save any data to the database.

    In order to achieve that first your need get the files and run this hook.

    add_action('wpcf7_mail_sent', function ( $cf7 ) {
        // Run code after the email has been sent
        print_r( $_POST['upload-file-123'] ); //get the list of files (example only)
    });
Viewing 1 replies (of 1 total)

The topic ‘NEW TABLE’ is closed to new replies.