Snippets

Pavel Kostyuchenko PYS Purchase event on any page

Updated by Pavel Kostyuchenko

File functions.php Modified

  • Ignore whitespace
  • Hide word diff
-add_filter( 'pys_is_thank_you_page', 'pys_is_thank_you_page' );
+add_filter( 'woocommerce_is_order_received_page', 'pys_is_thank_you_page' );
 function pys_is_thank_you_page( $value ) {
     
     if ( /* add condition here */ ) {
Created by Pavel Kostyuchenko

File functions.php Added

  • Ignore whitespace
  • Hide word diff
+add_filter( 'pys_is_thank_you_page', 'pys_is_thank_you_page' );
+function pys_is_thank_you_page( $value ) {
+    
+    if ( /* add condition here */ ) {
+        return true;
+    } else {
+        return $value;
+    }
+        
+}
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.