Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

On the full record display, the links section can contain many 856 links that institutions may not want to show. Because Primo VE does not have a built-in mechanism for configuring which links to hide or display, the best solution is to do this using your local customization package.

The Central Package has code that hides unwanted links. To enable that, simply define an application value called ‘linksToKeep’ in your local package.

...

After you are done, upload the new configuration package to your desired view and save/publish the changes.

Hiding the links section completely (Optional)

  1. Modify the css/custom1.css file in your desired Primo VE view configuration package. Add the following code:

    Note: you do not need to include the above mentioned JavaScript if you want to hide the links section.

    Code Block
    /* Hide Links Section */
    #links { display: none; }

  2. Upload the new configuration package to your desired view and save/publish the changes.

...