• Resolved cruiseback

    (@cruiseback)


    Hi,

    Great plugin!

    I have a minor change request..

    Would it be possible for a future release to change line 693 in ‘amamc_ask-me-anything-php’ from
    <?php printf( __('on %1$s'), get_comment_date( 'F j, Y g:i a',$question->comment_ID )); ?>
    to something like
    <?php printf( __('on %1$s'), get_comment_date( get_option('date_format'),$question->comment_ID )); ?>

    So that the date formatting on questions are in accordance with the formatting the user has selected in Settings > General?

    Thanks.

    Oh, and also I have had no luck trying to translate ‘on’ in that same line.

    Thanks again.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Arun Basil Lal

    (@arunbasillal)

    Hello @cruiseback

    Thanks for the kind words and the feedback, it makes sense.

    The “On” is missing the text domain.

    Can you replace the line with this and see if everything works as expected?

    <?php printf( __('on %1$s','abl_amamc_td'), get_comment_date( get_option('date_format'),$question->comment_ID )); ?>

    Thread Starter cruiseback

    (@cruiseback)

    Hi Arun,

    Thanks, that solved it.

    Plugin Author Arun Basil Lal

    (@arunbasillal)

    Wow, impressive turn around time. Thanks @cruiseback

    I have added this to my todo for next release ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Small request for ability to respect WordPress date format’ is closed to new replies.