Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Lottery info template where Lottery ends, Timezone, Minimum ticket number, This lottery is limited to, Tickets sold are removed. Template should be copied to your_child_theme\woocommerce\single-product\ folder. If it does not exists you need to create it.
- *
- * As you can see all content is commented out. You can also create empty file called lottery-info.php in that folder to accomplish removal of listed elements.
- */
- if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
- global $product, $post;
- $min_tickets = $product->get_min_tickets();
- $max_tickets = $product->get_max_tickets();
- $lottery_participants_count = !empty($product->get_lottery_participants_count()) ? $product->get_lottery_participants_count() : '0';
- $lottery_dates_to = $product->get_lottery_dates_to();
- $lottery_dates_from = $product->get_lottery_dates_from();
- $lottery_num_winners = $product->get_lottery_num_winners();
- ?>
- <?php /*
- <p class="lottery-end"><?php echo __( 'Lottery ends:', 'wc_lottery' ); ?> <?php echo date_i18n( get_option( 'date_format' ), strtotime( $lottery_dates_to )); ?> <?php echo date_i18n( get_option( 'time_format' ), strtotime( $lottery_dates_to )); ?> <br />
- <?php printf(__('Timezone: %s','wc_lottery') , get_option('timezone_string') ? get_option('timezone_string') : __('UTC+','wc_lottery').get_option('gmt_offset')) ?>
- </p>
- <?php if($min_tickets &&($min_tickets > 0) ) : ?>
- <p class="min-pariticipants"><?php printf( __( "This lottery has a minimum of %d tickets", 'wc_lottery'), $min_tickets ); ?></p>
- <?php endif; ?>
- <?php if( $max_tickets &&( $max_tickets > 0 ) ) : ?>
- <p class="max-pariticipants"><?php printf( __( "This lottery is limited to %s tickets", 'wc_lottery' ),$max_tickets ) ; ?></p>
- <?php endif; ?>
- <p class="cureent-participating"> <?php _e( 'Tickets sold:', 'wc_lottery' )?> <?php echo $lottery_participants_count ;?></p>
- <?php if( $lottery_num_winners > 0 ) : ?>
- <p class="max-pariticipants"><?php printf( _n( "This lottery will have %d winner" , "This lottery will have %d winners", $lottery_num_winners , 'wc_lottery' ) ,$lottery_num_winners ) ; ?></p>
- <?php endif; ?>
- */ ?>
Add Comment
Please, Sign In to add comment