Marks Polakovs

Results 14 comments of Marks Polakovs

@SpyTec I've fixed a couple more type errors in my branch (https://github.com/markspolakovs/snoowrap/tree/refactor/ts/snoowrap), I'll work through the rest as time permits

FYI, a workaround is to edit the `package.json` file and under `scripts` -> `build` change `$npm_package_productName` and `$npm_package_electronVersion` to `%npm_package_productName%` and `%npm_package_electronVersion%`.

FWIW, the way I got it to work (which is quite cursed) is to filter the presenter and override the `open_graph_images` array, like so: ```php function issue15052_yoast_presentation($presentation) { global $post;...

Until this is implemented as a feature, you can do on text entries: ```go yourField.Validator = validation.NewRegexp(".+", "Field is required") ```