Claudius Coenen

Results 155 comments of Claudius Coenen

This would be a very welcome addition to the FAQ, that was the first place I tried to find this info.

Should be noted that these **tags are localised**, and therefore you might not be able to rely just on the name at hand! A more international approach might be to...

Same issue here. After downloading a .pkpass file for an event, it sits in my download folder, and firefox thankfully offers a "download complete" notification which I can just click....

I think it comes down to these intent-filters, like in Anki: https://github.com/ankidroid/Anki-Android/blob/main/AnkiDroid/src/main/AndroidManifest.xml#L127-L193

I would like to point out that any addons onto MD should be very carefully thought through. We currently have a few syntax extensions, one of which is the [Externals...

This is still an issue in 2.0.8, should we re-open this issue or would you like me to open another one? I have a domain set on the "Settings" tab...

investigating further, I can pinpoint the problem down to this https://github.com/plausible/wordpress/blob/18bc986f75baffe97fdf7868afce7193b0ef056e/src/Filters.php#L49 I added some echos for simple debugging here, and `$domain_name` just comes up empty for me. ![grafik](https://github.com/plausible/wordpress/assets/124909/50d3d7e3-d611-4e56-83a0-9b4b6301bb9c) ![grafik](https://github.com/plausible/wordpress/assets/124909/091c88a5-b5d5-4d33-a759-a716ae91f5aa) if...

a `var_dump` in the same place also confirms that `$settings['domain_name']` contains an empty string. Please don't ask me why the `get_settings()` does not work here when `get_domain()` (which also calls...

Replacing https://github.com/plausible/wordpress/blob/18bc986f75baffe97fdf7868afce7193b0ef056e/src/Filters.php#L49 ```diff - $domain_name = esc_html( $settings[ 'domain_name' ] ); + $domain_name = esc_html( Helpers::get_domain() ); ``` works fine for me and _actually_ solves the problem.