• Resolved MulderDSM

    (@mulderdsm)


    It appears with the latest update the modified date now shows in red (#990000), where is the setting or CSS to change this color back to the black (#000000) it was before.

    <td class="mdocs-modified">
    <i class="fa fa-calendar" aria-hidden="true" title="Last Modified"></i>
    <em style="color: #990000;">12-20-2017 9:41 am</em>
    </td>

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author bhaldie

    (@bhaldie)

    the color has been red for as long as I can remember.

    If you want to change the color it will require you to create a file in the /memphis-documents-library/plugins/ folder. Call the file something like mdocs-changes.php:

    add this code to the file:

    
    add_action('wp_loaded','mdocs_changes');
    // THE FUNCTION TIED TO THE HOOK
    function mdocs_changes() {
        mdocs_update_file_info('show-modified', array('color' =>  '#000000'));
    }
    

    this will change the color to black.

    Thread Starter MulderDSM

    (@mulderdsm)

    Thank you! I just added it as a code snippet so I didn’t have to add in the plugin folder.

    Thread Starter MulderDSM

    (@mulderdsm)

    Resolved

    Plugin Author bhaldie

    (@bhaldie)

    🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Modified Dates changed color’ is closed to new replies.