Barry Ceelen
Barry Ceelen
For people looking to prevent or manipulate the distribution of images: the `dt_push_post_media` [filter](https://github.com/10up/distributor/blob/master/includes/classes/InternalConnections/NetworkSiteConnection.php#L125) allows you to disable or replace the handling of images for internal connections. It would be...
Also: Image handling in Distributor has a bit of a batch-like nature. It would be awesome if we could pluck the various functions apart to make it easier to distribute/handle/assign-to-an-async-task...
My 2 cents, for single line stuff that gets unreadably long I use (s)printf. When using (s)printf you can put the variables on their own lines which increases readability as...
Okidoki that’s done.
@mikeselander Merge conflicts fixed.
@mikeselander Merged latest changes from develop.
@mikeselander These little untranslated strings (and [these](https://github.com/humanmade/Custom-Meta-Boxes/pull/439)) stand out like a sore thumb between their otherwise impeccably translated brethren 😢. Can we put them out of their misery 😉?
Maybe something along these lines would work. This would not disable filtering altogether but use the global `$allowedposttags`. ``` $allowed_html = wp_kses_allowed_html( 'post' ); $content = wp_kses( $string, $allowed_html );...
@tylercherpak @rebeccahum I got the same error. Assuming you are on an M1 mac, updating the elasticsearch package in `docker-compose.yml` to the arm64 version: `image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.9.3-arm64` ..and removing the old...