Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author beke_ro

    (@beke_ro)

    Yes!
    You can turn off the date from admin.Go to Settings – Bknewsticker -Ticker Setup -Contents:and uncheck Show Dates.
    Or with custom code:
    Via FTP go to wp-content/plugins/bknewsticker/ticker.php
    Search for this line:

    function ticker_date_to_human_date($date) {
    
    	return date('F j, Y', $date);
    
    }

    and replace with this:

    function ticker_date_to_human_date($date) {
    
    	return date('m/d/y', $date);
    
    }

    Thanks!

    Thread Starter ma3ry

    (@ma3ry)

    Perfect!!!! Thank you so very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is Short Form of Date Possible?’ is closed to new replies.