thunderdw

Results 3 comments of thunderdw

For anyone looking to do this, it seems to work if you set the third parameter to an empty string or `false` E.g. `->conditional('field_name', '!=empty', false);`

It's a workaround but here's how I'm achieving this: ```php str_replace( ['', '', '', '', ''], '', $html->saveHTML($dom) ) ```

I was getting the same error. The conflict is with the PSR-11 container interface - `Psr\Container\ContainerInterface`, where another module is loading a newer version of `psr/container` than Matomo is. In...