tachyon-plugin
tachyon-plugin copied to clipboard
WordPress plugin for Tachyon
When the tachyon plugin url encodes file names, `wp_get_attachment_image_srcset()` always returns `false`. This is the case because `wp_calculate_image_srcset()` compares the plain file name with the url encoded url, which never...
``` [14-Aug-2020 10:20:42 UTC] PHP Warning: Illegal string offset 'width' in /usr/src/app/vendor/humanmade/tachyon-plugin/inc/class-tachyon.php on line 667undefined ```
It seems tachyon is experiencing some odd behaviour when the file name include a dimension. If the origianl file had a dimension portion of the file name, the request 404s,...
Environment: Altis v3 / Tachyon plugin 0.11.1 I have a custom field on the user profile managed by CMB2 - it's a file upload field ``` $cmb->add_field( [ 'name' =>...
I'm receiving a lot of undefined variables notices when using WP 5.3.2 with Tachyon, it caused by the `compact( ... 'size' )` variable in the `tachyon_post_image_args` hook. ``` [21-Dec-2019 10:47:54...
Currently the Tachyon Plugin builds the `srcset` attribute by replacing the sources WP core builds with Tachyon URLs. If the inserted image's aspect ratio doesn't match the ratio of any...
The downsizing filter uses `Tachyon::image_sizes()` to determine valid sizes for an image to account for image sizes registered after an image was uploaded. If registered sizes were removed after an...
In WP when you call `wp_get_attachment_image_src()` for example you pass in an array for the size parameter rather than a size name, in a Tachyon context this works great. There...
The Tachyon plugin currently doesn't handle any images served via admin-ajax by default. This leads to missed expectations whereby images loaded for the frontend via admin-ajax (infinite loading or load...
When using Tachyon, a single header image doesn't have its image URL tachyoned. This appears to be because a single header image is never passed through `image_downsize` - it is...