Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Lightbox trigger BUTTON visibility issue on an Image lightbox when Picture Element is enabled #1814

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions plugins/webp-uploads/picture-element.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,26 @@
$image
);
}

/**
* Adds CSS to make Lightbox trigger BUTTON visible on an Image lightbox when Picture Element is enabled.
*
* @since n.e.x.t
*/
function webp_make_lightbox_trigger_button_visible(): void {
if ( has_filter( 'render_block_core/image', 'block_core_image_render_lightbox' ) ) {

Check failure on line 178 in plugins/webp-uploads/picture-element.php

View workflow job for this annotation

GitHub Actions / PHP

Only booleans are allowed in an if condition, int|false given.
Copy link
Member

@felixarntz felixarntz Jan 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please review the code linting failures, see https://github.com/WordPress/performance/actions/runs/12910976968/job/36002299388?pr=1814.

Suggested change
if ( has_filter( 'render_block_core/image', 'block_core_image_render_lightbox' ) ) {
if ( has_filter( 'render_block_core/image', 'block_core_image_render_lightbox' ) === false ) {

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know why, but the has_filter() check isn't working. This does though:

Suggested change
if ( has_filter( 'render_block_core/image', 'block_core_image_render_lightbox' ) ) {
if ( false !== has_action( 'wp_footer', 'block_core_image_print_lightbox_overlay' ) ) {

echo '<style> .wp-lightbox-container > picture + button { opacity: 1 } </style>';

Check warning on line 179 in plugins/webp-uploads/picture-element.php

View check run for this annotation

Codecov / codecov/patch

plugins/webp-uploads/picture-element.php#L178-L179

Added lines #L178 - L179 were not covered by tests
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Without the :hover doesn't this mean it will always be shown?

}
}

/**
* Add an action to wp_footer conditionally for lighbox trigger button visibility.
*
* @since n.e.x.t
*/
function webp_add_footer_action_for_lightbox_button_visibility(): void {
if ( webp_uploads_is_picture_element_enabled() ) {
add_action( 'wp_footer', 'webp_make_lightbox_trigger_button_visible' );

Check warning on line 190 in plugins/webp-uploads/picture-element.php

View check run for this annotation

Codecov / codecov/patch

plugins/webp-uploads/picture-element.php#L189-L190

Added lines #L189 - L190 were not covered by tests
}
}
add_action( 'init', 'webp_add_footer_action_for_lightbox_button_visibility' );

Check warning on line 193 in plugins/webp-uploads/picture-element.php

View check run for this annotation

Codecov / codecov/patch

plugins/webp-uploads/picture-element.php#L193

Added line #L193 was not covered by tests
Comment on lines +183 to +193
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need two functions for this? I think it would be fine to unconditionally add the webp_make_lightbox_trigger_button_visible() function to wp_footer, and simply inside of it include an early return if ! webp_uploads_is_picture_element_enabled().

A related question is: Should this be in wp_footer or wp_head?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For classic themes this needs to be in wp_footer as otherwise we won't know if there is an Image block using a lightbox.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense, let's stick with wp_footer then. My other feedback is still applicable I think.

Loading