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 | |
add_action( 'woocommerce_thankyou', 'redirect_product_attribute_based', 1 ); | |
function redirect_product_attribute_based( $order_id ) { | |
$order = wc_get_order( $order_id ); | |
foreach( $order->get_items() as $item ) { | |
// Add whatever variation id you want below here | |
if ( isset( $item[ 'variation_id' ] ) && $item[ 'variation_id' ] == 446 ) { | |
// change below to the URL that you want to send your customer to | |
wp_redirect( 'http://yoururl.com/custom-thank-you/' ); |
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 | |
add_filter( 'wcap_product_name', 'shorten_product_name_in_abandon_cart_emails', 10, 1 ); | |
function shorten_product_name_in_abandon_cart_emails( $item_name ) { | |
if ( 'Rent a bicycle' == $item_name ) { | |
$item_name = 'Rent a bicy..'; | |
} | |
return $item_name; | |
} |
NewerOlder