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
/** | |
* Remove thumbnail and title from specific product page | |
*/ | |
function yourthemename_wc_remove_thumbnail_title_from_product() { | |
// add your product id here | |
if ( ! is_product( '475' ) ) { | |
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 ); | |
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 ); | |
} | |
} |
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 | |
// test with: `php valid-canadian-postal-code.php` | |
$expression = '/^([a-zA-Z]\d[a-zA-Z])\ {0,1}(\d[a-zA-Z]\d)$/'; | |
// lower, no space | |
$valid = (bool)preg_match($expression, 'k0a3m0'); | |
var_dump($valid); |
OlderNewer