• Resolved Trisha Johnson

    (@atomicdrivex)


    For those of you who have been having the whole timezone issue where it’s offset by a random amount of hours (it was 5 hours for me), and have had no luck with support, I’ve found a solution.

    You’ll need to edit the ultimate-auction.php file.
    Search for ‘timezone’, on/around line 608.
    Replace the first few lines (to the end of the if statement) to this:

    add_action('init', 'wdm_set_auction_timezone');
    function wdm_set_auction_timezone()
    {
        $get_default_timezone = get_option('wdm_time_zone');
    	$timezone_string = get_option( 'timezone_string' );
        
        if(!empty($get_default_timezone))
        {
            return $timezone_string;
        }

    BAM.
    no more issues.

    Now if only the developers would implement in their code…

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Timezone issue – FIXED’ is closed to new replies.