Skip to content

Instantly share code, notes, and snippets.

@jwad93
jwad93 / gist:a8fc1cf2b3784e653c3a5c76e1f8ad02
Last active September 6, 2023 13:33
WooCommerce Parent Stock According to Variable Stock
function wc_get_variable_product_stock_quantity( $output = 'raw', $product_id = 0 ){
global $wpdb, $product;
// Get the product ID (can be defined)
$product_id = $product_id > 0 ? $product_id : get_the_id();
// Check and get the instance of the WC_Product Object
$product = is_a( $product, 'WC_Product' ) ? $product : wc_get_product($product_id);
// Only for variable product type
@jwad93
jwad93 / pak-cities.php
Last active February 9, 2021 10:24
Add cities (of Pakistan) dropdown to WooCommerce checkout form
/**
* Change the checkout city field to a dropdown field.
*/
function jeroen_sormani_change_city_to_dropdown( $fields ) {
$city_args = wp_parse_args( array(
'type' => 'select',
'options' => array(