Replies: 5 comments 4 replies
-
|
We don't have You could then be able to process it with a pipeline. In the next release, this is also possible to show the ascendants or the parent (with link) via a enhanced hierarchical breadcrumb |
Beta Was this translation helpful? Give feedback.
-
|
Note that you can create a relative link. <badge align="right">[[?do=showtag&tag=$keywords|$keywords]]</badge> |
Beta Was this translation helpful? Give feedback.
-
|
The addition is for the next release. I have also update the branch 1.24.1. |
Beta Was this translation helpful? Give feedback.
-
|
Our bad. We had tested with the path ie but not It's corrected in the patch branch If you install it manually, it should work |
Beta Was this translation helpful? Give feedback.
-
|
I am probably trying to use this in the wrong way, as I use the (very useful!) tag + pagelist plugins to generate nice https://www.dokuwiki.org/plugin:tag It can generate lists of pages in a particular namespace based on tags e.g.
Had a look at the code to see how to get page tags - It seems quite easy to obtain the page tags, as it uses an existing dokuwiki metadata field called 'subject'. <php>
$id = cleanID(getID());
$tags = p_get_metadata($id, 'subject');
$taglist = implode(', ', $tags);
echo "Tags: $taglist\n";
</php>I had a look at the ComboStrap code to see if I could add this, but there are a lot of pending changes between 1.24 and 1.25, This might be a useful field to add to the iterator/metadata/PageSQL anyway, as tags are used by a few other plugins. Rob |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Taking your example of a content-list iterator:
I was trying to make the badge more useful, clickable link to the tag plugin to get a list of all tags, i,e,
to use the keywords to make a link to tags.
It just outputs a badge with the bare "$keywords"
I can hard link it with a URL:
<badge align="right">[[https://my,site.here/tag?do=showtag&tag=$keywords|$keywords]]</badge>Wondered if there was a better method of adding a label for keywords / tags in a content list?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions