Trilobita DocVault provides a complete document management solution for WordPress with intelligent version control capabilities.
Key Features:
Trilobita DocVault stores the following user data:
_trdv_uploaded_by) to track who uploaded each document version.trdv_download_log).This data is handled in compliance with GDPR and CCPA:
Shortcode:
Display documents on any page or post:
[trdv_list]
Shortcode Parameters:
category – Filter by document category slugtype – Filter by file type (pdf, docx, etc.)orderby – Sort by: date, title, size (default: date)order – ASC or DESC (default: DESC)show_search – Show search box: true/false (default: true)show_download – Show download button: true/false (default: true)columns – Columns to show: title,type,size,date (default: title,type,size,date)per_page – Documents per page (default: 20)Examples:
[trdv_list type="pdf" orderby="title" order="ASC"]
[trdv_list category="reports" show_search="false" columns="title,date"]
Document Block (Gutenberg):
Search for “Document” in the block inserter to add a single document with download button. Options include:
Inline Document Link:
Insert a download link within any text using the [trdv_link] shortcode:
[trdv_link id="123"]Download the report[/trdv_link]
Parameters:
id (required) – The document IDnew_tab – Open in new tab: true/false (default: false)class – Add custom CSS classExamples:
[trdv_link id="123"] - Uses document title as link text
[trdv_link id="123"]Click here[/trdv_link] - Custom link text
[trdv_link id="123" new_tab="true"]Download[/trdv_link] - Opens in new tab