Pages: 1
Hi there.
I have created metadata keywords in my pictures using Adobe Lightroom.
This means that the keywords are imported into Piwigo if IPTC is enabled, which it is.
But keywords that contains a . (dot) are split up into several keywords.
Example:
Keyword: Paris - 07.10 - 12.10.2019
Are split into 4 keywords:
Paris - 07
10 - 12
10
2019
Is there a way around this?
Thanks
Offline
There's a metadata_keyword_separator_regex config setting with default
// decide which characters can be used as keyword separators (works in EXIF // and IPTC). Coma "," cannot be removed from this list. $conf['metadata_keyword_separator_regex'] = '/[.,;]/';
If you add that to your local config removing the dot it should work:
$conf['metadata_keyword_separator_regex'] = '/[,;]/';
Offline
Excellent, Thanks!
But what file is configured in?
Thanks again
Offline
Install the plugin "LocalFiles Editor".
In the settings for this plugin just paste the above code and you are set.
Offline
Smart to have a plugin that let you edit the config :)
And I found what I was looking for, thank a lot!
Offline
Pages: 1