Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Lee Mason

    (@nohalfpixels)

    will look into it

    Plugin Author Lee Mason

    (@nohalfpixels)

    i fixed it in the latest release, please make sure your up to date.

    I’m using 1.0.6, just downloaded yesterday.

    The start date still says “1” no matter what.

    Hey, I figured out how to change this. Go to Plugins>Editor and select WP Project Management Ultimate. The chose the plugin file wp-project-managment-ultimate/WPPM-Metaboxes.php

    Search for this code:

    echo '<tr>';
    echo '<td><label for="_wppm_project_meta_start_date">'.
    __('Start Date', WPPM_LANG).':</label></td>';
    echo '<td><input type="text" class="datepicker large-text" name="_wppm_project_meta_start_date" size="10" value="'. isset($meta['_wppm_project_meta_start_date']).'" /></td>';
    echo '</tr>';

    And replace it with:

    echo '<tr>';
    echo '<td><label for="_wppm_project_meta_start_date">'. __('Start Date', WPPM_LANG).':</label></td>';
    $start = (isset($meta['_wppm_project_meta_start_date']))?$meta['_wppm_project_meta_start_date']:'';
    echo '<td><input type="text" class="datepicker large-text" name="_wppm_project_meta_start_date" value="' .$start.'" /></td>';
    echo '</tr>';

    Make sure to save the changes. I was having the exact same problem and this fixed it. Hope it helps.

    [Moderator Note: Please post code or markup snippets between backticks or use the code button.]

    Plugin Author Lee Mason

    (@nohalfpixels)

    sorry guys, sorted the end date and not the start.

    just commited a new release with a fix in place

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: WP Project Managment Ultimate] Start Date’ is closed to new replies.