Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Allen

    (@amweiss98)

    right now, the only way to do that is change the code in the widget file..in a future release I’ll add the ability to configure the date format.

    Thread Starter JonathanFokker

    (@jonathanfokker)

    OK.
    Can you explain me HOW I can do this?

    Greetings,
    Jonathan

    Thread Starter JonathanFokker

    (@jonathanfokker)

    Can you help with how I do this?

    Plugin Author Allen

    (@amweiss98)

    well, right now, I’m not supporting this version of the plugin as I’m about to release a major update. Do you know php date formats or you can read about them here:

    https://www.php.net/manual/en/function.date.php

    you need to first find what format you want..if you tell me, then I can explain where it goes.

    Thread Starter JonathanFokker

    (@jonathanfokker)

    He Allen,

    I just want this:
    23 juni 2014 (so date in Dutch writing) – Twinkel Magazine (on the same line, not a separate line)

    Can you tell me where I will put it?

    Plugin Author Allen

    (@amweiss98)

    go into the widget file (rss_multi_importer_widget.php), and look for line 415 or so

    if (!empty($items["mystrdate"])  && $showdate==1){
    echo  date_i18n("D, M d, Y",$items["mystrdate"]).'<br />';
    ]

    change that to

    if (!empty($items["mystrdate"])  && $showdate==1){
     echo  date_i18n("d M Y",$items["mystrdate"]);
    }
    Thread Starter JonathanFokker

    (@jonathanfokker)

    Thanks. That did the trick!

    Plugin Author Allen

    (@amweiss98)

    great…maybe you can rate the plugin when you get a chance – a nice thank you gesture ?? Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Change date output and put author of feed on same line’ is closed to new replies.