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
Dear All, | |
I am trying to add a Custome field just near by to SKU and Availablity in Single Product Page in WooCommerce by following code added in my Child Theme function.php. | |
//****Adding a text field:****// | |
function jk_add_custom_sku() { | |
$args = array( | |
'label' => __( 'Custom SKU', 'woocommerce' ), | |
'placeholder' => __( 'Enter custom SKU here', 'woocommerce' ), |