sql >> Database >  >> RDS >> Mysql

Ontvang prijsgegevens voor een boekbaar product met datumbereiken in WooCommerce

Voor WooCommerce-boekingen heb je alles wat nodig is in de WC_Product_Booking voorwerp:

// Get an instance of the WC_Product object (Here a WC_Product_Booking object)
$product = wc_get_product( $product_id );

// Get the base price
$base_price = $product->get_price();

// Get all related protected data in an array
$product_data = $product->get_data();

// Get the additional pricing data for this bookable product (array)
$product_pricing = $product_data['pricing'];

// iterating through each pricing row
foreach($product_pricing as $key => $princing ){
    $pricing_type           = $princing['type'];
    $pricing_base_cost      = $princing['base_cost']; // <= this is the price you are looking for
    $pricing_base_modifier  = $princing['base_modifier'];
    $pricing_cost           = $princing['cost']; 
    $pricing_modifier       = $princing['modifier'];
    $pricing_from           = $princing['from'];
    $pricing_to             = $princing['to'];
}

// Raw pricing data output (for tests)
echo '<pre>'; print_r($product_pricing); echo '</pre>';
';

Nu in de database kun je deze gegevens vinden in wp_post_meta tabel onder _wc_booking_pricing meta_key ... Dus vanaf de product-ID heb je er ook toegang toe met:

$pricing_data = get_post_meta( $product_id, '_wc_booking_pricing', false);

// Raw pricing data output (for tests)
echo '<pre>'; print_r($product_pricing); echo '</pre>';
';

  1. Probleem met het testen van database laravel 7.x

  2. Hoe print ik alle queries in Magento?

  3. Combineer (samenvoegen) twee kolommen uit twee tabellen in één SQL-query

  4. Automatiseer het grootste deel van de update-query's in pl\sql