| [sql](pip/sql.md) | Execute SQL instructions using a MySQL-flavored syntax (also see [database PHP API](database-php-api.md)) |
| [style](pip/style.md) | Style |
| [template](pip/template.md) | Frontend templates |
+| [templateDelete](pip/template-delete.md) | Deletes frontend templates installed with [template](pip/template.md) |
| [templateListener](pip/template-listener.md) | Embed template code into templates without altering the original |
| [userGroupOption](pip/user-group-option.md) | Permissions for user groups |
| [userMenu](pip/user-menu.md) | User menu categories and items |
--- /dev/null
+# Template Delete Package Installation Plugin
+
+Deletes frontend templates installed with the [acpTemplate](pip/acp-template.md) package installation plugin.
+
+!!! warning "You cannot delete templates provided by other packages."
+
+
+## Components
+
+Each item is described as a `<template>` element with an optional `application`, which behaves like it does for [acp templates](acp-template.md#application).
+The templates are identified by their name like when adding [template listeners](template-listener.md), i.e. by the file name without the `.tpl` file extension.
+
+## Example
+
+{jinja{ codebox(
+ title="templateDelete.xml",
+ language="xml",
+ filepath="package/pip/templateDelete.xml"
+) }}
- 'sql': 'package/pip/sql.md'
- 'style': 'package/pip/style.md'
- 'template': 'package/pip/template.md'
+ - 'templateDelete': 'package/pip/template-delete.md'
- 'templateListener': 'package/pip/template-listener.md'
- 'userGroupOption': 'package/pip/user-group-option.md'
- 'userMenu': 'package/pip/user-menu.md'
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/2019/templateDelete.xsd">
+ <delete>
+ <template>fouAdd</template>
+ <template application="app">__appAdd</template>
+ </delete>
+</data>