Ok. Here is what I got so far.
I had to turn ON the option for
Update module template .html files from themes/your theme/templates directory? in admin/preferences/general settings.
I was changing the extcal templates and updating the module through the admin, but the changes weren't showing, until I turn the above setting to "ON".
Now for the fixes I found. I am probably doing it wrong, but these worked for me.
*******************************
Quote:
Daily view is displayng this Friday April 29 2005d>
What is that and How do I get rid of the "d>" ?
in extcal/templates/extcal_daily_view.html
Change <t<{if $current_day.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}> <{$current_day.name}>t><{if $current_week.selected}>h<{else}>d<{/if}>>
To <t<{if $current_day.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}><{$current_day.name}>t>
**********************************
Quote:
Weekly view is displaying this Week 14d>
What is that and How do I get rid of the "d>" ?
in extcal/templates/extcal_weekly_view.html
Change <t<{if $current_week.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}> <{$current_week.week_nb}>t><{if $current_week.selected}>h<{else}>d<{/if}>>
To <t<{if $current_week.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}><{$current_week.week_nb}>t>
************************************
Quote:
Monthly view is displaying this April 2005d>
What is that and How do I get rid of the "d>" ?
in extcal/templates/extcal_monthly_view.html
Change <t<{if $current_month.selected}>h<{else}>d<{/if}> class='navig'><{$current_month.month_name}> <{$current_month.year}>t><{if $current_week.selected}>h<{else}>d<{/if}>>
To <t<{if $current_month.selected}>h<{else}>d<{/if}> class='navig'><{$current_month.month_name}> <{$current_month.year}>t>
***************************************
Quote:
Yearly view is displaying this 2005h>
What is that and How do I get rid of the "h>" ?
in extcal/templates/extcal_yearly_view.html
Change <t<{if $current_year.selected}>h<{else}>d<{/if}> class='navig'><{$current_year.year}>t><{if $current_year.selected}>h<{else}>d<{/if}>>
To <t<{if $current_year.selected}>h<{else}>d<{/if}> class='navig'><{$current_year.year}>t>
**********************************************
Quote:
Calendar view is displaying this April 2005h>
What is that and How do I get rid of the "h>" ?
in extcal/templates/extcal_calendar_view.html
Change <t<{if $current_month.selected}>h<{else}>d<{/if}> class='navig' colspan='3'><{$current_month.name}> <{$current_month.year}>t><{if $current_month.selected}>h<{else}>d<{/if}>>
To <t<{if $current_month.selected}>h<{else}>d<{/if}> class='navig' colspan='3'><{$current_month.name}> <{$current_month.year}>t>
*********************************************
That's all I could fix for now.
If someone could please point me to where the timestamp is defined in this module, maybe I could get the other issues solved. I have looked in almost every folder and file and I couldn't not find anywhere that looks like a fimilar timestamp code.
Any ideas???