How to make events portlet link to Calendar X view not events folder list
How to change the events portlet links to point to Calendar X view instead of Events Folder
- Add the view where you want it to be on the site
- Go to the ZMI
- Customize events.pt under Portal View Customizations
- Find PortletHeader and PortletFooter in the code and Customize the the links as shown below
<dt class="portletHeader">
<span class="portletTopLeft"></span>
<a href=""
tal:attributes="href string:${here/portal_url}/university-events/"
class="tile"
i18n:translate="box_events">
Upcoming Events
</a>
<span class="portletTopRight"></span>
</dt>
<dd class="portletFooter">
<a href=""
class="tile"
tal:attributes="href string:${here/portal_url}/university-events/"
i18n:translate="box_upcoming_events">
Upcoming events…
</a>
<span class="portletBottomLeft"></span>
<span class="portletBottomRight"></span>
</dd>











