Plugin Directory

Changeset 2157807


Ignore:
Timestamp:
09/17/2019 11:41:01 AM (7 years ago)
Author:
teoleonard
Message:

updated bug fixes

Location:
raffle-ticket-generator/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • raffle-ticket-generator/trunk/raffle-ticket-generator.php

    r2146994 r2157807  
    44Plugin URI: http://wpraffle.com
    55Description: Raffle Ticket Generator.  Generate numbered raffle tickets and email virtual tickets via WooCommerce order system
    6 Version: 3.5.3
     6Version: 3.5.3.1
    77Author: The Web Design Ninja
    88Author URI: http://TheWebDesignNinja.com
     
    5555        $wpdb->query($sql);
    5656     }
    57 register_deactivation_hook( __FILE__, 'wooraffle_uninstall' );   
     57//register_deactivation_hook( __FILE__, 'wooraffle_uninstall' );     
    5858
    5959
     
    244244
    245245    while ( $loop->have_posts() ) : $loop->the_post();   
    246 
    247 
     246$number_of_tickets = get_post_meta( get_the_ID(), '_number_field', true );
     247if ($number_of_tickets > 0) {
    248248        echo '<form method="post">
    249249
     
    425425
    426426
    427    
     427    }
    428428 
    429429
  • raffle-ticket-generator/trunk/readme.txt

    r2146994 r2157807  
    105105
    106106Changed SQL methods to better secure plugin
     107
     108=3.5.3.1=
     109Bug fixes of displaying non raffle products and js confliction in bronze version
Note: See TracChangeset for help on using the changeset viewer.