Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with OpenID
Date format in campaign trail
  • Q1: And if it’s possible, can the dates be changed from November 02nd to November 2nd? No need to have the leading zero on the day.

    A1: sure :)
    Open includes/help/help.php and change this part of function tb_get_date:

    $return['day'] = $dateArray[2];

    into

    $return['day'] = intval($dateArray[2]);

    Q2: Is it possible to have the slide show up until the end of the day?

    A2: Again: sure :)

    Open campaign.php and find this: 

    'compare' => '>'

     Change it to:


    'compare' => '>='

    Notice an extra '=' sign in changed line.