Preciso de um plugin de loteria. A ideia é que após o cliente comprar um produto no woocommerce, seja gerado 5 ou 6 numeros randomicos de 1 a 99. Estes numeros serão o numero da sorte dele que será usado para algum sorteio. Por exemplo, ele compra um produto chamado "Numeros da sorte para sorteio de um carro", então apos comprar, seria gerado um numero como "5 10 25 31 33 59". Alguém conhece algum plugin ou tema que faça isto?
Created
August 30, 2021 21:13
-
-
Save luiseduardobraschi/1882d396242089b39af9fa8ac1b15030 to your computer and use it in GitHub Desktop.
[WCBR] Resposta post WooCommerce Brasil - 4342857705782162
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 | |
function wcbr_create_lottery_numbers( $order_id ){ | |
$order = wc_get_order( $order_id ); | |
$items = $order->get_items(); | |
$lucky_product_id = 28; | |
foreach( $items as $item_id => $item ) { | |
$product_id = $item->get_variation_id() ? $item->get_variation_id() : $item->get_product_id(); | |
if( $product_id == $lucky_product_id ) { | |
$numbers = []; | |
for( $i = 0; $i<5; $i++ ){ | |
$numbers[] = wp_rand( 1, 99 ); | |
} | |
sort( $numbers, SORT_NUMERIC ); | |
$message = sprintf( 'Seus números da sorte são: %s', implode( ' ', $numbers ) ); | |
$order->add_order_note( $message, true ); | |
break; | |
} | |
} | |
} | |
add_action( 'woocommerce_new_order', 'wcbr_create_lottery_numbers' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment