Account level announcements not pushed through Notifications, right? (2024)

Skip to main content

Learn about Community

Sign In

You're signed out

Sign in to ask questions, follow content, and engage with the Community

Sign In

Starting Soon

Community Pros: Canvas Admin Tools and Tasks

Starts at Aug 16, 2024 12:00 PM

Learn More

'; hoverCardInner.innerHTML = loadingHTML.repeat(4); hoverCardContainer.classList.add('profile-hover-card-show'); // Extract information from the image element const titleField = avatar.getAttribute('title'); const userInfoUrl = `https://${mainURL}/api/2.0/search?q=SELECT first_name, last_name, login, view_href, rank, topics, solutions_authored, id, email FROM users WHERE login = '${titleField}'`; const userPostsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}'`; const userSolutionsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}' AND is_solution = true`; const userBadgesUrl = `https://${mainURL}/api/2.0/search?q=SELECT user_badges from users where login = '${titleField}'`; // Fetch user information async function createProfileData() { const userInfo = await fetch(userInfoUrl); const userPosts = await fetch(userPostsUrl); const userSolutions = await fetch(userSolutionsUrl); const userBadges = await fetch(userBadgesUrl); const userInfoData = await userInfo.json(); const userPostsData = await userPosts.json(); const userSolutionsData = await userSolutions.json(); const userBadgesData = await userBadges.json(); const userBadgesArray = userBadgesData.data.items[0].user_badges.items; const earnedBadgesArray = userBadgesArray.filter(badge => badge.earned_date); earnedBadgesArray.sort((a, b) => new Date(b.earned_date) - new Date(a.earned_date)); const userRankName = userInfoData.data.items[0].rank.name; const userID = userInfoData.data.items[0].id; // const userKudosUrl = `https://${mainURL}/restapi/vc/users/id/${userID}/metrics/name/net_kudos_events_received?restapi.response_format=json`; const userKudos = await fetch(userKudosUrl); const userKudosData = await userKudos.json(); let fullName = userInfoData.data.items[0].login; if (userInfoData.data.items[0].first_name !== undefined && userInfoData.data.items[0].last_name !== undefined) { let firstName = userInfoData.data.items[0].first_name; let lastName = userInfoData.data.items[0].last_name; fullName = firstName + " " + lastName; } else { fullName = userInfoData.data.items[0].login; } let userRankIcon = ""; if (userInfoData.data.items[0].rank.icon_left !== undefined) { userRankIcon = userInfoData.data.items[0].rank.icon_left; } else { userRankIcon = ""; } let userEmail = ""; // <#if user_has_role> if (userInfoData.data.items[0].email !== undefined) { userEmail = userInfoData.data.items[0].email; } else { userEmail = ""; } // <#else> userEmail = ""; // #if> const userViewHref = userInfoData.data.items[0].view_href; const userPostsCount = userPostsData.data.count; const userSolutionsCount = userSolutionsData.data.count; const userKudosCount = userKudosData.response.value.$; const userBadgesCount = earnedBadgesArray.length; let badgesHTML = ""; if (earnedBadgesArray.length === 0) { badgesHTML = `

This user hasn't earned any badges yet.

`; } else { for (let i = 0; i < earnedBadgesArray.length; i++) { const badgeName = earnedBadgesArray[i].badge.title; const badgeIcon = earnedBadgesArray[i].badge.icon_url; const badgeHTML = `

Account level announcements not pushed through Notifications, right? (12)

`; badgesHTML += badgeHTML; if (i >= 4) { break; } }; } const hoverCardHTML = `

${fullName}

Account level announcements not pushed through Notifications, right? (13)${userRankName}

${userEmail}

${badgesHTML}

${userPostsCount} posts ${userKudosCount} likes ${userSolutionsCount} solutions

`; // // Display the hover card return hoverCardHTML; } if (hoverCardInner.innerHTML.includes('loading-box')) { createProfileData().then((hoverCardHTML) => { hoverCardInner.innerHTML = hoverCardHTML; }); } } }); //Hide the hover card on mouseout avatar.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseover', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.add('profile-hover-card-show'); }); }); });

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Showonly | Search instead for

Did you mean:

  • Community
  • Canvas
  • Canvas LMS
  • Canvas Question Forum
  • Account level announcements not pushed through Not...

Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page

`; const toolTip = document.createElement('div'); toolTip.classList.add('like-button-tooltip'); toolTip.innerHTML = toolTipCode; likeButton.appendChild(toolTip); } document.addEventListener('DOMContentLoaded', function () { const likeButton = document.querySelector('.lia-button-image-kudos'); const likeButtonLink = document.querySelector('.kudos-link'); let likeDismissCookie = localStorage.getItem("inst_comm_like_dismiss"); if (!likeDismissCookie) { localStorage.setItem("inst_comm_like_dismiss", "-1"); loginDate = -1; } if (likeDismissCookie !== "-1") { // toolTip.style.display = 'none'; const storedTime = new Date(parseInt(loginDate)); const currentTime = new Date(); if (storedTime.getTime() < currentTime.getTime()) { localStorage.setItem("inst_comm_like_dismiss", "-1"); } } else { createToolTip(likeButton, likeButtonLink); const toolTip = document.querySelector('.like-button-tooltip'); const toolTipClose = document.querySelector('.like-button-tooltip-close'); const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { toolTip.style.display = 'block'; setTimeout(() => { toolTip.style.opacity = '1'; }, 2000); // toolTip.style.animationName = 'toolTipFlash'; // Stop observing once elementOne is visible observer.unobserve(likeButton); } }); }); // Start observing elementTwo observer.observe(likeButton); likeButtonLink.addEventListener('click', () => { toolTip.style.display = 'none'; }); if (toolTipClose) { toolTipClose.addEventListener("click", function () { const now = new Date(); const fourteenDays = new Date(now.getTime() + 14 * 24 * 60 * 60 * 1000); // Adding 24 hours in milliseconds const epochTime = fourteenDays.getTime(); // Getting the epoch time in milliseconds localStorage.setItem("inst_comm_like_dismiss", epochTime); toolTip.style.display = 'none'; }); } setTimeout(() => { toolTip.style.opacity = '0'; setTimeout(() => { toolTip.style.display = 'none'; }, 500); // Fade out duration (0.5 seconds) + delay (0.5 seconds) = 1 second }, 15000); // Hide after 10 seconds (including 2-second fade-in delay) } });

Account level announcements not pushed through Notifications, right?

Jump to solution

Account level announcements not pushed through Notifications, right? (14)

dwillmore

Community Champion

‎06-27-201711:37 AM

I am fairly certain that I am correct here. When I put an account announcement in Canvas it does not forward to anyone's email or SMS. Is that correct?

Solved!Go to Solution.

Labels (2)

Labels

  • Labels:
  • Admin

  • Administrator

I also have this question

2Likes

1 Solution

Jump to solution

Account level announcements not pushed through Notifications, right? (15)

Robbie_Grant

Community Champion

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎06-27-201712:22 PM

@dwillmore,

You are correct. Account level announcements are not sent through user notifications.

Robbie

View solution in original post

This reply answered my question

3Likes

  • All forum topics
  • Previous Topic
  • Next Topic

3 Replies

Jump to solution

Account level announcements not pushed through Notifications, right? (16)

Robbie_Grant

Community Champion

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎06-27-201712:22 PM

@dwillmore,

You are correct. Account level announcements are not sent through user notifications.

Robbie

This reply answered my question

3Likes

Jump to solution

Account level announcements not pushed through Notifications, right? (17)

dwillmore

Community Champion

In response to Robbie_Grant

Author

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎06-27-201712:53 PM

Thank you, both. I didn't want to make a grand statement to our campus without being certain.

2Likes

Jump to solution

Account level announcements not pushed through Notifications, right? (18)

Account level announcements not pushed through Notifications, right? (19)kona

Community Coach

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎06-27-201712:26 PM

@dwillmore, correct. 🙂

3Likes

Account level announcements not pushed through Notifications, right? (20)

Unanswered Topics

  • External tool

  • Speed grade reverse alpha order

  • Imported Announcements come in as Discussions?

  • Gradebook problem assignments grey, can't put in g...

  • Canvas resubmit button

View All

Latest Topics

  • External tool

  • Speed grade reverse alpha order

  • Imported Announcements come in as Discussions?

  • Gradebook problem assignments grey, can't put in g...

  • Pages Not Visible

View All

View our top guides and resources:

Find My Canvas URL Help Logging into Canvas Generate a Pairing Code Canvas Browser and Computer Requirements Change Canvas Notification Settings Submit a Peer Review Assignment

To participate in the Instructure Community, you need to sign up or log in:

Sign In

Account level announcements not pushed through Notifications, right? (2024)

FAQs

How do I fix announce notifications? ›

If you don't hear Siri announcements

Go to Settings > Notifications > Announce Notifications and make sure that Announce Notifications is turned on. Make sure that your iPhone or iPad is locked and its screen is dark. Siri doesn't announce messages if you're using your device.

What is the difference between notification and push notification? ›

For example, a local notification could be set to remind users of an upcoming appointment or to complete a daily task within the app. Push notifications, on the other hand, are sent from a server to the user's device.

Why am I not getting push notifications from my bank? ›

If you're not getting alerts, make sure you've agreed to receive notifications in your device's settings. You can toggle push notifications on and off in your app – go to 'More', 'Settings' and tap 'Push notifications'.

Why is my iPhone email not getting push notifications? ›

Change your Mail notification settings

Go to Settings > Mail > Notifications, then make sure that Allow Notifications is on. Tap Customize Notifications, then tap the email account you want to make changes to. Select the settings you want, like Alerts or Badges.

How do I get my notifications back to normal? ›

Option 1: In your Settings app
  1. Open your device's Settings app.
  2. Tap Notifications. App settings.
  3. Under "Most recent," find apps that recently sent you notifications. To find more apps, in the dropdown menu, tap All apps.
  4. Tap the app.
  5. Turn the app's notifications on or off.

Why are none of my notifications coming through? ›

If you aren't receiving notifications from a specific app, the most likely culprit is the notification settings for that app. Every app has its own set of permissions to access Android features, and notifications are one. Make sure notifications are enabled for the apps you want. Check your battery-saving settings.

Why you should turn off push notifications? ›

Notifications activate the brain's reward system, releasing dopamine and increasing arousal and distraction. This continuous stimulation can decrease productivity and general mental health by causing stress, impairing focus, and negatively affecting cognitive function.

Are push notifications good or bad? ›

In summary, push notifications are great if you're looking to send important alerts or offers that can reach users in real-time on their devices, as they have high visibility and good open rates.

What is an example of a push notification? ›

Types of push notifications

They might include weather alerts, traffic updates, or breaking news. Reminder notifications: These notifications help users stay organized by sending reminders for upcoming events, appointments, or deadlines.

Why am I no longer getting push notifications? ›

Troubleshoot push notifications

Make sure you aren't on an Incognito tab. If enabled, turn off Focus or Do not disturb mode on your device. Ensure website notifications are enabled for your Google Chrome, Firefox, Safari, or Edge browser.

What is a push notification on my bank account? ›

Signing up for push notifications, allows you to receive “push” versions of some online banking alerts or one time passcodes for authentication purposes.

How do I unblock push notifications? ›

If you want to receive notifications from a site but don't get them:
  1. On your Android device, open Chrome .
  2. Go to the site from which you want to receive notifications.
  3. Tap Page info Permissions Notifications.
  4. Turn Notificationson or off.
  5. Next to 'Notifications', select Allow from the drop-down menu.

Why are my emails not coming through as notifications? ›

Check your device notification settings

On your Android phone or tablet, open the Gmail app . General settings. Tap Manage notifications. Turn All Gmail notifications on or off.

What is the difference between push and fetch on iPhone? ›

Fetch New Data is a feature that allows you to select how often your Apple® iPhone® checks for new data. Push is a feature that's only available with certain accounts that automatically push data to the device. to turn on or off. Select an account then select a schedule option (Push, Fetch or Manual).

How do I get to push notifications on iPhone? ›

Go to Settings and tap Notifications. Select an app under Notification Style. Under Alerts, choose the alert style that you want. If you turn on Allow Notifications, choose when you want the notifications delivered—immediately or in the scheduled notification summary.

How do I turn on announce notifications on my iPhone? ›

Go to Settings > Siri & Search > Announce Notifications, then turn on Announce Notifications. Tap an app you want Siri to announce notifications from, then turn on Announce Notifications. For some apps, you can also choose whether to announce all notifications or only time-sensitive notifications.

How do I turn on announce notifications on Android? ›

How to turn on Google Assistant's Spoken notifications
  1. Press and hold the smartphone's Home button to start the Google Assistant app.
  2. Tap Headphones settings. ...
  3. On the Assistant Setting screen, tap Spoken notifications.
  4. Change the setting on the Spoken notifications screen by setting each app to On or Off.
Apr 24, 2024

References

Top Articles
Latest Posts
Article information

Author: Patricia Veum II

Last Updated:

Views: 5841

Rating: 4.3 / 5 (44 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Patricia Veum II

Birthday: 1994-12-16

Address: 2064 Little Summit, Goldieton, MS 97651-0862

Phone: +6873952696715

Job: Principal Officer

Hobby: Rafting, Cabaret, Candle making, Jigsaw puzzles, Inline skating, Magic, Graffiti

Introduction: My name is Patricia Veum II, I am a vast, combative, smiling, famous, inexpensive, zealous, sparkling person who loves writing and wants to share my knowledge and understanding with you.