Descripción
By default, Contact Form 7 dose not keep data it sends trough it’s contact forms.
While plugins like Flamingo save that data, uploaded files are not added to Media Library.
This plugin will save uploaded files to Media Library before email is sent by CF7.
This plugin will raise an event with the the full file path & name.
Subscribe to nmr_create_attachment_file_name
filter to get and/or update data before attachment is added to media library.
// The filter callback function.
function example_callback( $file_name ) {
// (maybe) modify $file_name.
return $file_name;
}
add_filter( 'nmr_create_attachment_file_name', 'example_callback', 10, 1 );
Subscribe to nmr_before_insert_attachment
filter to be able to change attachment attributes: caption and description are ‘post_excerpt’ and ‘post_content’.
For other attributes, check documentation for wp_insert_attachment.
// The filter callback function.
function before_insert_attachment_callback( $attachment ) {
// (maybe) modify $attachment array.
return $attachment;
}
add_filter( 'nmr_before_insert_attachment', 'before_insert_attachment_callback', 10, 1 );
Optionally, subscribe to nmr_should_skip_save_attachment_to_media_library
filter to be able to skip saving the attachment to media library: return true to skip, false is the default behaviour that saves the attachment to media library. Filter nmr_before_insert_attachment
will not be called if skip was true.
// The filter callback function.
function skip_media_library_callback( $skip_save_to_media_library ) {
// return true to skip saving to Media Library, false to save.
return true;
}
add_filter( 'nmr_should_skip_save_attachment_to_media_library', 'skip_media_library_callback', 10, 1 );
Este plugin enviará el ID final del adjunto si estás interesado en obtener otros detalles, como la URL del adjunto.
Escucha la acción nmr_create_attachment_id_generated
.
// The action callback function.
function example_callback_id_generated( $attachment_id ) {
// (maybe) do something with the args.
$url = wp_get_attachment_url( $attachment_id );
}
add_action( 'nmr_create_attachment_id_generated', 'example_callback_id_generated', 10, 1 );
Documentación y soporte
Revisa el foro de soporte en WordPress.org. Si no puedes localizar ningún debate que se relacione con tu problema en particular, publica un nuevo debate para él.
«Store file uploads for Contact Form 7» necesita de tu apoyo
Es difícil continuar el desarrollo y el soporte de este plugin gratuito sin las contribuciones de usuarios como tú. Si disfrutas usando «Store file uploads for Contact Form 7» y lo encuentras útil, por favor, plantéate hacer una donación. Tu donación ayudará a fomentar y apoyar el desarrollo continuo del plugin y un mejor soporte al usuario.
Avisos de privacidad
Con la configuración por defecto, este plugin, por si mismo:
- no rastrea a los usuarios de forma encubierta;
- no escribe ningún dato personal del usuario en la base de datos;
- no envía ningún dato a servidores externos;
- no usa cookies.
Sin embargo, almacenará los archivos subidos a través de Contact Form 7 en la biblioteca de medios de WordPress.
¡Asegúrate de que los usuarios de tu web sean conscientes de este hecho!
Capturas
Instalación
- Sube toda la carpeta al directorio
/wp-content/plugins/
. - Activa el plugin a través del menú «Plugins» en WordPress.
Después de eso, revisa la biblioteca de medios para ver los archivos subidos.
Reseñas
Colaboradores y desarrolladores
«Store file uploads for Contact Form 7» es un software de código abierto. Las siguientes personas han colaborado con este plugin.
Colaboradores«Store file uploads for Contact Form 7» ha sido traducido a 5 idiomas locales. Gracias a los traductores por sus contribuciones.
Traduce «Store file uploads for Contact Form 7» a tu idioma.
¿Interesado en el desarrollo?
Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.
Registro de cambios
1.2.3
Add support for skipping saving to Media Library by using nmr_should_skip_save_attachment_to_media_library
filter
1.2.2
Add support for changing attachment attributes using nmr_before_insert_attachment
filter
1.2.1
- Added support for media uploads (including mp3)
1.2.0
- Añadido el filtro
nmr_create_attachment_file_name
y la acciónnmr_create_attachment_id_generated
1.1.0
- Contact Form 7 ha cambiado
WPCF7_Submission::get_instance()->uploaded_files
en CF7 5.4, por lo que ha sido necesario hacer ajustes en este plugin.
1.0.0
- Primera versión.