After upgrading to 16.1.3, Site Links no longer display on the Classic 'Overview' portlet page of the Classic UI. Any newly created Site Links do not work either.
STEPS TO REPRODUCE:
1. In Classic UI go to Administration then "Site Links"
2. Create a new Site Link
3. Go to the General Overview page, under the "Site Links" section it will be blank
Expected Results: Site Links should display.
Actual Results: Site Links Missing.
Release : 16.1.3
Defect Id: DE77674
The resolution to this issue is included in 16.2.0 and 16.1.3.1.
As a workaround, create and use an HTML portlet using the query below;
SELECT prID, prName as label, prURL as url
FROM PRLink
WHERE prTableName IN ('PRSite','PRSITE')
order by prname
An example of the steps are as follows:
SELECT
@SELECT:DIM:USER_DEF:IMPLIED:LINK:L.PRID:ID@,
@SELECT:DIM_PROP:USER_DEF:IMPLIED:LINK:L.PRNAME:LABEL@,
@SELECT:DIM_PROP:USER_DEF:IMPLIED:LINK:L.PRURL:URL@
FROM PRLink l
WHERE l.prTableName IN ('PRSite','PRSITE')
AND @FILTER@
Anybody using the default Portlet Page will see the new portlet, any user who made changes will either have to add it manually, or use the “Restore Defaults” option.