This file contains 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 | |
$sku = 'ITEM001'; | |
$qty = 1; | |
// Get product_id from SKU — returns null if not found | |
$product_id = wc_get_product_id_by_sku( $sku ); | |
// Process if product found | |
if ( $product_id != null ) { |
This file contains 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
/* Change the WooCommerce ‘Return to shop’ link */ | |
function change_return_to_shop_link() { | |
// return to homepage | |
return get_home_url(); | |
} | |
add_filter( 'woocommerce_return_to_shop_redirect', 'change_return_to_shop_link' ); |