My Profile Overview | MV Support (2024)

  • Home
  • Account Settings
  • Profile

Last Modified on 05/30/2024 2:58 pm EDT

This is your central presence onManyVidsthat allows fans to discover you and see what you have to offer. Your profile is your online store andManyVidsis like the online shopping mall where all Creators have their stores.

Your MV Profile lets you communicate with the world and show everyone what you’re all about and what they can purchase from your Store. If you’ve created a profile on a social media site before, your MV Profile will be the same thing - only your profile is also set up to help you reach your career goals by generating sales!

Crafting a personalized profile is key in attracting new and loyal customers!

To see what your profile looks like:

  • Desktop users can click My Profile from the left bar menu
  • Mobile users can click on their avatar in the drop-down menu

Setting up your Profile

  • You will see your total number of Followers. People who follow you will see your posts in their activity feed. You can see who follows you and who you are following by clicking the 3-dots in the top right of your profile and clicking <Followers>.
  • Clubis a great way to market yourself, interact with other Creators and be a contributing member of the MV Community!
  • This tab is also where you will go to post to your Club, a personalized inner fan club! Click here for more information
  • Items: This is where Members can find items you have for sale! Make sure to pin your absolute best products to the top of your items tab. To learn how to create store items, head right over here.
  • Vids: This is where Members will go to purchase your vids! Need help uploading vids,click here!
  • Custom:Offer custom-made vids to your fans! You can find everything you need to set that up here: How do I offer Custom Vids on my Profile?
  • About Me:A great way to let your fans know about you, and help your content be found in site searches! Find more on that here: What is the 'About Me' section?
  • Global Ranking: This can be found on your Dashboard: What is my MV Number!
  • Notifications: Keep up with all your Club activity! This will show you when you receive new Followers, Likes, Comments, Broadcast & Club updates!
    My Profile Overview | MV Support (1)
  • Sales tickers: You'll notice each Each ticker displays recent sales-- encouraging other Members to purchase!

Click here to learn how to increase your score!

My Profile Overview | MV Support (2)

Related Articles

  • How do I edit my "About Me" page?

  • [Members] How do I edit my "About Me" page?

  • How do I pin Vids and/or Store Items to the top of my profile?

  • How do I link my X account?

  • My MV Profile

  • Full PDF Download

"); } else { $("#node-tabs-container").append("

"); } // Add a node content block, for displaying headers or final-level content //MB hotfix 6-11-2020: prepend level 1 since it's currently being put at the bottom for some reason if (nodeLevel == '1'){ $(".node-level-container.level-1").after("

"); } else { $("#node-tabs-container").append("

"); } } $(".node-level-container.level-"+nodeLevel).append(nodeHTML); }); // Remove template from DOM $(".node-tab.template").remove(); // Hide all the node tabs and containers, except for level 1 $(".node-level-container:not(.level-1)").hide(); $(".node-tab:not(.level-1)").hide(); loadingComplete(); } function setupEventHandlers() { // Open tabs when clicked $(".node-tab").click(function(e) { // Get information about this node's level var thisLevelClass = e.currentTarget.className.match(/level-\d+/)[0]; //console.log("thisLevelClass",thisLevelClass); var thisLevel = parseInt(thisLevelClass.split("-")[1]); // Get this node's category id var thisCatID = $(this).data("category-id"); // Get this node's catageory API data var thisCatData = getObjectByPropertyValue(apiData.categories, "id", thisCatID); // Hide everything that is one level below the clicked node, and remove any selected classes from these nodes function oneLevelBelow() { return $(this).attr("data-node-level") >= thisLevel+1; } $(".node-level-container").filter(oneLevelBelow).hide(); $(".node-tab").filter(oneLevelBelow).hide().removeClass("selected"); $(".node-tab."+thisLevelClass).removeClass("selected"); // Also remove selected class from nodes on the same level as this one $(".node-content").filter(oneLevelBelow).html(""); $(".node-content").filter(oneLevelBelow).hide().removeClass("selected"); $(".node-content."+thisLevelClass).html("").removeClass("selected"); // Also empty out node content from this level $("#ko-contact-form").hide(); // Also hide contact form $("#action-buttons-container").hide(); // Also hide contact form buttons $(".form-button").removeClass("selected"); // Display the next level's container $(".node-level-container.level-"+(thisLevel+1)).show(); // Display the node tabs that are children of the clicked node $(".node-level-container.level-"+(thisLevel+1)+" .node-tab[data-parent-category='"+thisCatID+"']").show(); // Add a selected class to this node $(this).addClass("selected"); $(".node-content."+thisLevelClass).addClass("selected"); // Display and populate this node's content var nodeDescription = apiData.articles.find(function(article) { return article.parents.indexOf(thisCatID) > -1; }).current_version.en.text; $(".node-content."+thisLevelClass).html(nodeDescription).show(); // Identify a node content as final level content if the node tab has the final level attribute if ($(this).hasClass("final-level")) { var finalLevelNodeContent = $(".node-content.selected").last(); finalLevelNodeContent.addClass("final-level"); // Display action buttons $("#action-buttons-container").show(); scrollToBottom(); } else { $(".node-content").removeClass("final-level"); $(".node-content .final-level-related-articles-container").remove(); } rearrangeForm(); }); $(".form-button").click(function() { $(this).addClass("selected"); $("#ko-contact-form").show(); }); } function rearrangeForm() { // Name getFormGroup("contact_name") .detach() .insertAfter(".hg-contact-form-container h2") .css({ "width": "50%", "display": "inline-block", "padding-right": "10px" }); // Email getFormGroup("contact_email") .detach() .insertAfter(getFormGroup("contact_name")) .css({ "width": "50%", "display": "inline-block", "padding-left": "10px" }); // Subject $("#contact_subject").attr("placeholder", "Please provide a brief summary"); // Details $("#contact_body").css("height", "100px").attr("placeholder", "Please provide as much detail as possible."); // Submit Button $(".hg-contact-form-container .text-right button").text("Send"); // Make field changes based on the content inside the chosen final node. Insert them before "attach files" field var customFieldData = interpretCustomFields(); var attachFiles = $(".hg-contact-form-container .form-group").last(); var fieldCount = 0; // Wipe out any previously recycled custom fields $(".recycled").remove(); // Remove the default fields (if there are any still) $(".form-group").each(function() { if ($(this).find("label").text().indexOf("Response") > -1) { $(this).remove(); } }); customFieldData.forEach(function(field) { if (field.type == null) { console.log("Error - field definition has no type", field); } else { if (field.type == "label") { attachFiles.before("

"); } else if (field.type == "text") { if (field.placeholder == null) { field.placeholder = ""; } var recycledField = $('

'); recycledField.find("label").attr("for", "response_"+(fieldCount+1)); recycledField.find("label").text(field.question); recycledField.find("input").attr("id", "response_"+(fieldCount+1)); recycledField.find("input").attr("name", "custom_contact_field_"+fieldCount); recycledField.find("input").attr("placeholder", field.placeholder); recycledField.addClass("recycled"); attachFiles.before(recycledField); fieldCount++; } else if (field.type == "dropdown") { var recycledField = $('

'); recycledField.find("label").attr("for", "response_"+(fieldCount+1)); recycledField.find("label").text(field.question); recycledField.find("select").attr("id", "response_"+(fieldCount+1)); recycledField.find("select").attr("name", "custom_contact_field_"+fieldCount); // Add options field.options.split(";").forEach(function(option) { recycledField.find("select").append("

"); }); recycledField.addClass("recycled"); attachFiles.before(recycledField); fieldCount++; } } }); } function getObjectByPropertyValue(array, propertyName, propertyValue) { return array.filter(function(o) { return o[propertyName] === propertyValue })[0]; } function loadingComplete() { console.log("All loading complete"); // Display the documentation article now that all nodes are built $(".hg-contact-page").show(); nodesHeight = $(".documentation-article").outerHeight(true); } function getFormGroup(inputID) { return $("#"+inputID).parent(".form-group"); } Array.prototype.extend = function(other_array) { // from http://stackoverflow.com/a/17368101 other_array.forEach(function(v) { this.push(v) }, this); } function interpretCustomFields() { var customFieldsData = []; // For each pre tag $(".node-content.final-level.selected").find("pre").each(function() { // Remove curly brackets and white space var asString = $(this).text(); asString = asString.replace("{",""); asString = asString.replace("}",""); asString = asString.trim(); var asArray = asString.split(","); var asObject = {}; asArray.forEach(function(e) { var key = e.split(":")[0].trim(); var value = e.split(":")[1].trim(); asObject[key] = value }); customFieldsData.push(asObject); }); return customFieldsData; } } });

Choose the subject below that best describes how we can help.

Contact MV Support

My Profile Overview | MV Support (2024)

FAQs

How do I answer what are some things I do well? ›

Here are some steps for figuring out what you do well:
  1. Consider which skills have helped you succeed. Think about your skills and identify any that have been beneficial to you in the past. ...
  2. Identify tasks that make you feel empowered. ...
  3. Find patterns of success in your experiences. ...
  4. Pay attention to the compliments you receive.

What do you like best about your job sample answers? ›

  • "I thoroughly enjoyed working with my coworkers. ...
  • "Through my experience at my previous company, I was exposed to many different managing styles as team leads overcame barriers through collaborative and effective efforts. ...
  • "My current job has been a perfect entry-level role.
Jul 1, 2024

What is the overview of Outlook? ›

With Outlook on your PC, Mac or mobile device, you can: Organize email to let you focus on the messages that matter most. Manage and share your calendar to schedule meetings with ease. Share files from the cloud so recipients always have the latest version.

How do I reset my Outlook profile? ›

Reset Outlook profile
  1. Exit Outlook. ...
  2. Use the search bar in the task bar to search for the Control Panel.
  3. Select the Mail component.
  4. Click the Show Profiles button.
  5. The Outlook profile should be highlighted. ...
  6. At the prompt, click Yes to remove the profile.
  7. Click Apply and then click OK.
  8. Start Outlook.
Feb 2, 2023

What are my top 3 areas of improvement? ›

Area of improvement examples can be divided into three broad areas: planning and organization, leadership and management, and communication and interpersonal skills. Goal-setting, engagement, professional development, and work-life balance are key for employees looking to improve their performance.

How to answer "describe yourself"? ›

  1. Use Storytelling and Practice Your Answer. ...
  2. Highlight Relevant Strengths and Experience. ...
  3. Share a Professional Story and Relevant Anecdotes. ...
  4. Exercise Research-Based Empathy in Your Response. ...
  5. Provide a Brief Highlight-Summary of Your Experience. ...
  6. Differentiate Yourself from Other Applicants.
Oct 30, 2023

What is your job profile answer? ›

To explain a job profile, clearly describe the main responsibilities, tasks, and duties associated with the position. Include key objectives, required skills, and the role's importance within the organization. Highlight specific goals, expectations, and any relevant tools or technologies used.

What are 3 things you like about your job? ›

Reasons Why People Love Their Job
  • Alignment between personal and company values.
  • Feeling a sense of belonging and liking the people you work with.
  • Company culture.
  • Personal development and growth.
  • Challenge and professional development.
  • Contributing to a larger purpose.
  • Having a good boss.
  • Being well paid.

What is your ideal job best answer? ›

Discuss the qualities of your ideal job in broad strokes: fair pay, good people, company stability, etc. Touch on your qualifications and relevant skills to illustrate why you're a good fit for the job. Talk about learning of the job opportunity and why it spoke to you—why the position intrigues you.

What is Outlook short answer? ›

Microsoft Outlook is the preferred email client used to send and receive emails by accessing Microsoft Exchange Server email.

What is the overview of Outlook group? ›

Outlook is India's most credible current affairs and news magazine launched in 1995. Known for its bold and aggressive reporting it continuously raises questions many had in their minds but never dared to ask. Outlook has rewritten and reinvented the way news and general interest magazines are presented in India.

How do you explain Outlook? ›

Outlook organizes your emails, calendars, contacts, tasks, and to-do lists, all in one place. That organization starts with your email account.

What is an Outlook profile? ›

A profile is a critical part of your Outlook experience. The profile consists of the accounts, data files, and settings that specify where your email messages are saved.

How do I correct my Outlook profile? ›

Using a command line switch, right click the Windows Start button and select Run. In the Run dialog box, type: Outlook.exe /profiles and then press Enter. While Outlook is running, select File > Account Settings > Change Profile. Outlook will restart.

How do I clear my Outlook profile? ›

Remove a profile
  1. In Outlook, click File > Account Settings > Manage Profiles.
  2. Select Show Profiles.
  3. Select a profile, then select Remove.

How do you answer what I do best? ›

How to answer "What are you good at?"
  1. Identify your top skills or strengths. ...
  2. Connect your strengths to the job's requirements. ...
  3. Emphasize the quality of your skills rather than the quantity. ...
  4. Provide credibility to your skills by discussing examples. ...
  5. Discuss how you intend to use your skills for the company's growth.
Jun 28, 2024

What are some things I do well at work examples interview? ›

You can say “I am good at problem solving, working collaboratively, and staying organized. I am also a quick learner and have a strong attention to detail. I am confident in my ability to take on new tasks and learn new skills quickly”.

What is the answer of doing well? ›

Positive and Uplifting Replies

I'm doing great; many thanks! I'm sending you loads of good thoughts for a fantastic day! I'm doing great; I appreciate you asking!

What is the best answer of what are you doing? ›

Eh, not much.”

Try this when you're not sure what the person wants or you don't know them very well—if they want to keep talking, it'll be up to them to let you know what their point is. A lot of times, “What are you doing?” is just a generic conversation starter. “Hey! Nothing in particular.”

Top Articles
Latest Posts
Article information

Author: Duncan Muller

Last Updated:

Views: 6153

Rating: 4.9 / 5 (79 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Duncan Muller

Birthday: 1997-01-13

Address: Apt. 505 914 Phillip Crossroad, O'Konborough, NV 62411

Phone: +8555305800947

Job: Construction Agent

Hobby: Shopping, Table tennis, Snowboarding, Rafting, Motor sports, Homebrewing, Taxidermy

Introduction: My name is Duncan Muller, I am a enchanting, good, gentle, modern, tasty, nice, elegant person who loves writing and wants to share my knowledge and understanding with you.