Thorsten Frommen

Results 50 comments of Thorsten Frommen

> It would be great if MLP support this idea... Well, @Biont, the author of this very issue, **is** one of the developers of MultilingualPress, so yes, we definitely _support_...

Hi @tyrann0us, yes, that's true, unfortunately. 😞

Hi there, and thanks for this. We will fix this in an upcoming release. > I believe the en.gif is not good, too. It contains the flag of England, but...

Hi Pavel! > I just wrote a long text explaining the second part of the "http code" in Language manager would be better for determining the flag name, but found...

Hi there, I don't know exactly which way you want to do this, so what do you want/need here? For a given blog with `$blog_id`, getting an array with the...

Hi there, I copied your code to my theme's `functions.php` file - and everything works as expected. I have a network with two blogs, each having one post. The blogs...

Instead of this: ```php Brain\Monkey\Filters\expectAdded('template_include') ->with('Example->template()'); ``` try this: ```php static::assertTrue( has_filter( 'template_include', 'Example->template()' ) ); ``` (Or `[ Example::class, 'template' ]` etc.) This needs to go **after** you instantiated...

I believe `Brain\Monkey\Filters\expectAdded()->with()` (i.e., essentially a Mockery expectation) does not make use of [`CallbackStringForm`](https://github.com/Brain-WP/BrainMonkey/blob/master/src/Hook/HookStorage.php#L224), which `has_filter` (i.e., internally the `HookStorage`) does. Is this assumption corect @gmazzap? And if so, has...

@XedinUnknown it's (somewhat hidden) included in the [first example](http://patchwork2.org/examples/) on the official Patchwork website: ![image](https://user-images.githubusercontent.com/6049306/118230757-723eb500-b48e-11eb-859b-ae0551f60291.png) Since documenting the structure and location can be done in just a single sentence, would...

Could you ignore this specific rule just for the documentation block? ```scss /* stylelint-disable max-line-length */ /** * Your documentation goes here... */ /* stylelint-enable max-line-length */ ``` I think...