Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created November 11, 2025 14:22
Show Gist options
  • Select an option

  • Save plugin-republic/2bbc8e03f3cea2e810b94925915a6bac to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/2bbc8e03f3cea2e810b94925915a6bac to your computer and use it in GitHub Desktop.
<?php
/**
* Quickview markup adjustment for Elementor
*/
remove_action( 'wp_footer', 'pewc_display_quickview_background' );
function demo_display_quickview_background() {
if( did_action( 'woocommerce_after_add_to_cart_button' ) > 2 ) {
return;
}
if( pewc_child_product_quickview() == 'yes' ) { ?>
<div id="pewc-quickview-background"></div>
<?php }
}
add_action( 'woocommerce_after_add_to_cart_button', 'demo_display_quickview_background' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment