WooCommerce File Sharing & Message After Chekcout Wordpress Plugin - Rating, Reviews, Demo & Download
Plugin Description
This plugin allow admin and client to communicate and share files. It adds a button under My Account page next to ‘View’ button order like:
Â
On next page, order detail client can type message or even attach files. Once the file is sent an email notification is sent to admin. Existing messages and files are listed on same area like:
Â
Admin can see these message(s) under each order page with files and reply to client. Email notification will also sent to client with direct URL to order page.
Â
Customization
- Set file thumb size
- Set file size in mb
- File upload button label
- File types control
- File count control
- Customize email template
- Customize message when message sent
Â
Installation and Startup
Just download zip file and upload into plugins section of Wordpress. Once it’s activated you can access it’s setting with WooUpload Menu like:
Filters for Developers
<b>add_filter(‘wooconvo_message_subject’, ‘your_subject’, 10,2);</b>
$subject: string
$order_id: int
Above filter can be used change email subject when a message is sent
Â
<b>add_filter(‘wooconvo_view_order_text’, ‘your_order_text’);</b>
$default: string
Above can change the default text on my account ‘View and Messages’
Â
<b>add_filter(‘wooconvo_message_receivers’, ‘your_message_recievers’);</b>
$to: an array
Above filters can be used to add more emails to receive notification.
Â
<b>add_filter(‘wooconvo_render_attachments’, ‘your_file_attachment’, 10,2);</b>
$html: string/html
$files: all files in array
Above filter can be used to change file attachments view in existing messages
Â