• Resolved tobygrist

    (@tobygrist)


    is it possible to add the day of the week in front of the date of a forecast and to remove the word ‘forecast’?

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

    (@tuxlog)

    wp-forecast uses the date format of the blog, so changing the date format of your WordPress installation will change this and you can add the day of the week.

    another way is to change the line $av[‘fc_date_format’]=get_option(“date_format”); in funclib.php to something like $av[‘fc_date_format’]=”<your php date string>”;

    To remove the heading “Forecast” edit wp-forecast-show.php and change
    $out1 .= __(“Forecast”,”wp-forecast_”.$wpf_language).” “;
    to something like
    $out1 .= “<my text or nothing>”.” “;

    Thread Starter tobygrist

    (@tobygrist)

    Absolutely perfect. Thank you.

    Thread Starter tobygrist

    (@tobygrist)

    Donation made for such good support.

    Plugin Author tuxlog

    (@tuxlog)

    Thank you very much and have fun with wp-forecast. ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Add day of week to forecast’ is closed to new replies.