How to Trigger a Call-to-action only on Woo-commerce order received page?

If you want to trigger a design only on Woo-commerce order received page, you just need to add following code snippet in your theme’s functions.php file. add_filter( ‘cp_pro_target_page_settings’, ‘cp_is_display_popup’, 10, 2 ); function cp_is_display_popup( $display_style, $style_id ) { // if style is to display on this page ( replace 10304 with your style id ) […]

How to Trigger a Call-to-action only on Woo-commerce order received page? Read More »