I need to bulk connect hundreds of “therapist” posts to many “treatment” posts in a many-to-many Toolset relationship, but manually linking each one is extremely time-consuming.
Solution:
Export the relationships to a CSV or spreadsheet, bulk edit them using an external tool, and re-import using a compatible importer. Alternatively, use the WP Sheet Editor plugin which supports Toolset relationships for bulk editing directly in a spreadsheet-style interface within WordPress.
I want to display a URL parameter (e.g., ?usr=johndoe) inside a Toolset Field & Text block, but my shortcode using get_query_var() always returns "Guest" instead of the actual value.
Solution:
Use $_GET['usr'] instead of get_query_var() in your shortcode, and sanitize it like this: