Modify an existing term
Create a new form and set Post Management
as action.
You can select the user to be modified in two ways.
Select the term from the new form modal
Pick up the desired taxonomy and select the Term to edit, like in this example:

Injecting tid in the shortcode
Add tid to the shortcode:
[acpt_form id="e45b2639" tid="123"] // where 123 is the ID of the term
This particular syntax can also be used in combination with get_queried_object()
function:
$termId = get_queried_object()->term_id;
echo do_shortcode('[acpt_form id="e45b2639" uid="'.$termId.'"] ');
Be careful, if the term ID is wrong, the form will not be displayed.
Last updated