← Back to Download Manager Support
inetis
Hi, as this feature was requested many times, we've added it in v1.0.8.
There is now a displayBreadcrumb
property in the component, allowing to show a breadcrumb to go back to any parent folder.
If you which to only allow to go back to the direct parent instead, you could override the breadcrumb.htm
partial as described here and use the following code:
{% set parent = parentCategories.last %}
{% if parent %}
<a href="{{ parent.url }}">Back to {{ parent.name }}</a>
{% endif %}
inetis
If you have version 1.0.8, you should now see it in your CMS Page from the backend here:
Or if you prefer to edit the page using a text editor like in the documentation of the plugin, you can add the displayBreadcrumb
line like this:
[downloadManagerBrowser]
rootFolder = 0
path = "{{ :path }}"
displayBreadcrumb = true
1-4 of 4