• Resolved WanderingOtaku

    (@wanderingotaku)


    I’m working on a new responsive design and comic easel is only showing the time posted rather than the date and time.

    In the comicblogpost.php I see the line:

    if ($instance['showdate']) { echo "<div class=\"comic-post-widget-date\">".get_the_time(get_option('time_format'))."</div>\r\n"; }

    which shows it is only posting the time…

    I changed the php to work using the code below, but obviously any future updates to comic easel will override it.

    if ($instance['showdate']) { echo "<div class=\"comic-post-widget-date\">on ".get_the_date()."</div>"; echo "<div class=\"comic-post-widget-date\">at ".get_the_time(get_option('time_format'))."</div>\r\n";}

    Is there an option I am missing somewhere to have it show the date or is it actually in the coding?

    https://www.ads-software.com/plugins/comic-easel/

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Comic blog post time only?’ is closed to new replies.