Dear All,
I am facing the following issue.
I have successfully enabled the search mechanism in Dogwood
EDX instance.
Now, when I search for a course, the information displayed
on the courses (such as course organization) is a bit different than my
home page.
In my home page, the organization is shown properly, while in the search page, the shortened name of the organization appears and I would like to change that.
I found out that my home page shows the information from the
'/apps/edx/edx-platform/lms/templates/course.html', for instance the
course organization is retrieved from here:
<span class="course-organization">${course.display_org_with_default}</span>
where the search page information is from the page /apps/edx/edx-platform/lms/templates/discovery/course_card.underscore' and the same information is retrieved from here:
<span class="course-organization"><%- org %></span>
How could I have the information displayed like from the first page?
I already tried to get the ${course.display_org_with_default} value, with no success in the .underscore page.
Another similar question is how could I rename the titles in the 'Refine Your Search' section of the search? For example, how can I change the 'org' to 'Organization'?
Thanks in advance.
Best Regards,
Kostas.