Settings and activity
160 results found
-
1 vote
Derek Brown shared this idea ·
-
20 votes
An integration with Stripe Connect is planned.
Derek Brown supported this idea ·
-
24 votes
Derek Brown supported this idea ·
-
29 votes
Derek Brown supported this idea ·
-
35 votes
Derek Brown supported this idea ·
-
5 votes
Derek Brown supported this idea ·
-
1 vote
Derek Brown shared this idea ·
-
38 votes
Derek Brown supported this idea ·
-
5 votes
79% of strategic partner feedback identified PayPal as the preferred payment for integration.
Derek Brown shared this idea ·
-
10 votes
An error occurred while saving the comment Derek Brown shared this idea ·
-
13 votes
Derek Brown supported this idea ·
-
17 votes
Derek Brown supported this idea ·
-
5 votes
An error occurred while saving the comment Derek Brown commented
This would make our lives a lot easier for scheduling.
Derek Brown supported this idea ·
-
3 votes
Derek Brown shared this idea ·
-
14 votes
Derek Brown shared this idea ·
-
24 votes
The product team will review this idea for consideration for a future release.
Derek Brown supported this idea ·
-
20 votes
Derek Brown supported this idea ·
-
47 votes
Derek Brown supported this idea ·
-
20 votes
Derek Brown supported this idea ·
-
7 votes
Derek Brown supported this idea ·
We've made changes to our Vega Discover Premium Footer to force changes to the way Discover reflects to our patrons. Here is a snip of our footer that redirects the "I forgot my password" link from the clarivate email statement to our classic PAC that has the correct verbiage.
<script>
function addClickListenerToImage2() {
document.querySelectorAll('a[target*="blank"]').forEach(function(link) {
link.removeAttribute('target');
link.removeAttribute('href');
});
}
function addClickListenerToImage() {
const passcodeReplace = document.querySelector('a[class*="forgot-passcode-link"]');
if (passcodeReplace) {
passcodeReplace.addEventListener('click', function() {
// Change the window location to the new URL
window.location.href = 'https://catalog.rhpl.org/polaris/logon.aspx?forgotPassword=1&ctx=1.1033.0.0.8';
});
}
}
const observer = new MutationObserver(function(mutationsList) {
// Check for added nodes
for (const mutation of mutationsList) {
if (mutation.type === 'childList') {
addClickListenerToImage2();
addClickListenerToImage();
}
}
});