Ordering Meetings Fields For SuiteCRM Calendar

Viewed 485

In the SuiteCRM calendar the default for Meetings is to show the SUBJECT of the Meeting followed by the MEETING OBJECTIVES.

I want to modify it so that on the first line it shows the MEETING OBJECTIVES and the second line is the SUBJECT of the Meeting.

I've looked in modules/Calendar and modules/Meetings and I'm still a bit lost. Any idea on which file I need to modify to be able to change the order of these two fields?

1 Answers

Calendar module files are placed inside "modules/Calendar" folder. It contain tpl,js and php classes and functions for calendar module. "get_activities" function inside "modules/Calendar/CalendarActivity.php" actually load activities. You can change text here before it assigned to tpl/js file. Further more you can also do changes inside this file: "modules/Calendar/Calendar.php" , see function "load_activities"

I think changing in JS should be last option because that is to complex and changes there need more time then doing it in alternative way in PHP file.

Related