Created
November 11, 2025 14:22
-
-
Save plugin-republic/2bbc8e03f3cea2e810b94925915a6bac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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