Re: Change student account to parent (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

'; 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 = `

Re: Change student account to parent (12)

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

${fullName}

Re: Change student account to parent (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
  • Groups
  • Free For Teacher Canvas Users
  • Forum
  • Re: Change student account to parent

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) } });

Change student account to parent

Re: Change student account to parent (14)

rockhopper

Community Member

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

Friday

I accidentally set up a student account instead of a parent account to observe a course. Can anyone help me switch it? I really don't want to have to use a different email to make a new parent account.

I also have this question

0Likes

  • All forum topics
  • Previous Topic
  • Next Topic

5 Replies

Re: Change student account to parent (15)

BrianLester

Community Contributor

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

Friday

You may have the ability to remove the observer you created - Go to People in course navigation. The click the three dot pull down menu on the line where the created observer appears and from the drop down choose remove from course

If the above doesn't work may need assistance from an admin from your institution (in the case of an institution's canvas instance) or from Instructure if you're using Canvas Free for teacher.

0Likes

Re: Change student account to parent (16)

rockhopper

Community Member

In response to BrianLester

Author

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

Monday

I don't have a course or an observer, or as best I can tell an institution. How would I contact Instructure?

0Likes

Re: Change student account to parent (17)

rockhopper

Community Member

Author

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

Monday

Is there a way to contact Instructure for help?

0Likes

Re: Change student account to parent (18)

Re: Change student account to parent (19)Chris_Hofer

Community Coach

In response to rockhopper

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

Tuesday

@rockhopper...

That depends on the level of support your school has selected. For some schools, they pay Instructure (the folks that make Canvas) for Help Desk support. So, instructors, students, and local Canvas administrators at the school can call Instructure directly to get technical support. Other schools have a local help desk staff. Some schools (and mine is an example of this) have a few assigned Canvas administrators that can contact the Canvas Help Desk staff on an instructor's/student's behalf. If you are using the Free For Teacher version of Canvas (not a paid Canvas account), then most support is through the forums here. If your school has a paid Canvas account and has chosen to let Instructure's Help Desk staff handle all support calls, then your school would normally get a unique telephone number to call. But, I wouldn't know what that is.

Here's a couple Guides I can provide you to look at:

  • How do I get help with Canvas as a student?
  • How do I get help with Canvas as an instructor?

I hope some or all of this info will be useful to you.

0Likes

Re: Change student account to parent (20)

Re: Change student account to parent (21)NoahBoswell

Community Coach

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

yesterday

@rockhopper(For Free-For Teacher) You don't have to make a new account! All you need to do is ask the teacher to add you to the course as an observer and link your account to your student(s). From there, your student role will be removed, and you'll be able to observe your student(s) at any time.

I hope this helps!

0Likes

Re: Change student account to parent (22)

Unanswered Topics

  • Canvas Free Account Teacher (Cannot create courses...

  • How. to. view e-mail history. with a student?

  • Add student to Course including their name.

  • Pairing codes

  • Generating Item Analysis for Current Students ONLY

View All

Latest Topics

  • Canvas Free Account Teacher (Cannot create courses...

  • Change student account to parent

  • Problems with new user account creation

  • Viewing Questions from previously made New Quizzes...

  • How. to. view e-mail history. with a student?

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

Re: Change student account to parent (2024)
Top Articles
Yeiverlin Rodriguez
Anup kumar Pandey on LinkedIn: #innovation #achievement
The Largest Banks - ​​How to Transfer Money With Only Card Number and CVV (2024)
Walgreens Pharmqcy
4-Hour Private ATV Riding Experience in Adirondacks 2024 on Cool Destinations
Ets Lake Fork Fishing Report
Craigslist Mpls Mn Apartments
Gabriel Kuhn Y Daniel Perry Video
Triumph Speed Twin 2025 e Speed Twin RS, nelle concessionarie da gennaio 2025 - News - Moto.it
Hertz Car Rental Partnership | Uber
3656 Curlew St
Tripadvisor Near Me
Oppenheimer Showtimes Near Cinemark Denton
“In my day, you were butch or you were femme”
Craigslist Apartments In Philly
Kitty Piggy Ssbbw
Abortion Bans Have Delayed Emergency Medical Care. In Georgia, Experts Say This Mother’s Death Was Preventable.
Brett Cooper Wikifeet
Icommerce Agent
E22 Ultipro Desktop Version
Jalapeno Grill Ponca City Menu
Hollywood Bowl Section H
Gopher Hockey Forum
Magic Seaweed Daytona
How to Watch Every NFL Football Game on a Streaming Service
Yugen Manga Jinx Cap 19
Weldmotor Vehicle.com
D2L Brightspace Clc
Move Relearner Infinite Fusion
Apparent assassination attempt | Suspect never had Trump in sight, did not get off shot: Officials
Tinyzonehd
Gopher Carts Pensacola Beach
Babydepot Registry
Ellafeet.official
Breckie Hill Fapello
Craigslist Hamilton Al
Orangetheory Northville Michigan
Xemu Vs Cxbx
1-800-308-1977
Samsung 9C8
Wsbtv Fish And Game Report
Marcus Roberts 1040 Answers
Culver's of Whitewater, WI - W Main St
How Big Is 776 000 Acres On A Map
Pgecom
From Grindr to Scruff: The best dating apps for gay, bi, and queer men in 2024
Ajpw Sugar Glider Worth
Best Restaurant In Glendale Az
25100 N 104Th Way
antelope valley for sale "lancaster ca" - craigslist
Wvu Workday
Fetllife Com
Latest Posts
Article information

Author: Ouida Strosin DO

Last Updated:

Views: 5671

Rating: 4.6 / 5 (56 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Ouida Strosin DO

Birthday: 1995-04-27

Address: Suite 927 930 Kilback Radial, Candidaville, TN 87795

Phone: +8561498978366

Job: Legacy Manufacturing Specialist

Hobby: Singing, Mountain biking, Water sports, Water sports, Taxidermy, Polo, Pet

Introduction: My name is Ouida Strosin DO, I am a precious, combative, spotless, modern, spotless, beautiful, precious person who loves writing and wants to share my knowledge and understanding with you.