{"id":62139,"date":"2024-02-13T09:04:32","date_gmt":"2024-02-13T14:04:32","guid":{"rendered":"https:\/\/memberpress.com\/docs\/how-to-allow-members-to-upload-files\/"},"modified":"2024-03-01T09:36:04","modified_gmt":"2024-03-01T14:36:04","slug":"how-to-allow-members-to-upload-files","status":"publish","type":"ht_kb","link":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/","title":{"rendered":"Como permitir que os membros fa\u00e7am upload de arquivos"},"content":{"rendered":"\n<p>MemberPress allows you to specify a handful of <a href=\"https:\/\/memberpress.com\/docs\/fields\/\" target=\"_blank\" rel=\"noopener\">different custom field types<\/a> that a member must fill out when registering for a Membership account on your website.<\/p>\n\n\n\n<p>In some cases, you may want to review some documents from the user prior to approving their membership on your site.<\/p>\n\n\n\n<p>To do this, simply create a new File Upload Custom Field type like the one shown below:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-IY7U5k17Xi.png\" alt=\"\"\/><\/figure>\n\n\n\n<p>Now on your registration form(s) for your Membership(s), there will be a new field where the member can upload a document.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-7wx1yJqPH7.png\" alt=\"\"\/><\/figure>\n\n\n\n<p>After the member has registered, you (as an admin user) can view the user's uploaded file within their WordPress User Profile as shown below:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-9YygNhmGpf.png\" alt=\"\"\/><\/figure>\n\n\n\n<p class=\"wp-block-ht-blocks-messages wp-block-hb-message wp-block-hb-message--withicon is-style-info\"><b>Note<\/b>: Additionally to this, the user's uploaded files are stored within the <strong>wp-content\/uploads\/mepr\/userfiles\/<\/strong> folder<\/p>\n\n\n\n<p>Clicking <strong>View<\/strong>\u00a0will open the file or download it, depending on how your browser is set to handle that particular file type.<\/p>\n\n\n\n<p>Clicking <strong>Replace<\/strong>\u00a0will allow you to upload a different file instead.<\/p>\n\n\n\n<p>By default, MemberPress does not allow the member to know the location or view the uploaded file for security reasons. This prevents bots from registering, uploading, and executing malicious code.<\/p>\n\n\n\n<p>But if you want to allow your members to view the files they've uploaded, the following shortcode(s) can be used:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[mepr-user-file slug=\"mepr_drivers_license\"]<\/code><\/pre>\n\n\n\n<p>This shortcode will generate a link to the file uploaded by the currently logged-in user with the slug as the clickable Link Text name. The link will open the file in a new tab.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[mepr-user-file slug=\"mepr_drivers_license\" userid=\"5521\"]<\/code><\/pre>\n\n\n\n<p>This shortcode will generate a link to the file uploaded by the user with ID 5521 with the slug as the clickable Link Text name. The link will open the file in a new tab.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[mepr-user-file slug=\"mepr_drivers_license\"]Download[\/mepr-user-file]<\/code><\/pre>\n\n\n\n<p>This shortcode will generate a link to the file uploaded by the currently logged-in user with the text in between the shortcodes (Download)\u00a0as the clickable Link Text name. The link will open the file in a new tab.<\/p>\n\n\n\n<p>If you want to add a link to the file in an email, you can use the {$usermeta:slug} email param, just replace \u201cslug\u201d with the slug of the file field like so:\u00a0 <strong>{$usermeta:mepr_drivers_license}<\/strong><\/p>\n\n\n\n<p>Members can replace their file(s) from their Account page if you've allowed the \u201cShow in Account\u201d option when creating the File Upload field in MemberPress > Settings > Fields tab.<\/p>\n\n\n\n<p>MemberPress only supports uploads of the following types:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-background\" style=\"background-color:#f5f5f5\">      \"jpg|jpeg|jpe\"  => \"image\/jpeg\",\n      \"gif\" => \"image\/gif\",\n      \"png\" => \"image\/png\",\n      \"tiff|tif\"  => \"image\/tiff\",\n      \"txt|asc|c|cc|h|srt\"  => \"text\/plain\",\n      \"csv\" => \"text\/csv\",\n      \"rtx\" => \"text\/richtext\",\n      \"zip\" => \"applicat \/ion\/zip\",\n      \"doc\" => \"application\/msword\",\n      \"pot|pps|ppt\" => \"application\/vnd.ms-powerpoint\",\n      \"xla|xls|xlt|xlw\" => \"application\/vnd.ms-excel\",\n      \"docx\"  => \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\",\n      \"pptx\"  => \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\",\n      \"odt\" => \"application\/vnd.oasis.opendocument.text\",\n      \"odp\" => \"application\/vnd.oasis.opendocument.presentation\",\n      \"ods\" => \"application\/vnd.oasis.opendocument.spreadsheet\"<\/pre>\n\n\n\n<div>For advanced users, if you wish to alter these, you can make use of our WordPress PHP filter\u00a0 <strong>mepr_upload_mimes<\/strong>\u00a0as shown below. You can add the code snippet using a plugin\u00a0like the <a href=\"https:\/\/wordpress.org\/plugins\/insert-headers-and-footers\/\">WPCode<\/a> plugin (set the snippet to\u00a0Run Everywhere).\u00a0Please check this article for details: <a href=\"https:\/\/memberpress.com\/docs\/how-to-add-custom-code-snippets-in-wpcode\/\">How to add custom code snippets in WPCode<\/a>.<\/div>\n\n\n\n<pre class=\"wp-block-preformatted has-background\" style=\"background-color:#f5f5f5\">\/\/ Allow PDF uploads\nfunction alter_mepr_upload_mimes($mimes) {\n  $mimes['pdf'] = 'application\/pdf';\n  return $mimes;\n}\nadd_filter('mepr_upload_mimes', 'alter_mepr_upload_mimes');<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>MemberPress allows you to specify a handful of different custom field types that a member must fill out when registering for a Membership account on your website. In some cases, you may want to review some documents from the user prior to approving their membership on your site. To do this, simply create a new [\u2026]<\/p>\n","protected":false},"author":62252,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"_strive_editorial_status":"not-started","_strive_copy_of":0,"inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","_FSMCFIC_featured_image_caption":"","_FSMCFIC_featured_image_nocaption":"","_FSMCFIC_featured_image_hide":"","_strive_checklists":"\"\"","_strive_active_checklist":"62291e2bb2422","footnotes":""},"ht-kb-category":[1315],"ht-kb-tag":[],"class_list":{"0":"post-62139","1":"ht_kb","2":"type-ht_kb","3":"status-publish","4":"format-standard","6":"ht_kb_category-how-to","7":"entry","8":"has-post-thumbnail"},"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"MemberPress allows you to specify a handful of different custom field types that a member must fill out when registering for a Membership account on your website. In some cases, you may want to review some documents from the user prior to approving their membership on your site. To do this, simply create a new\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Nikola M\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"pt_BR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"MemberPress\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to allow Members to upload files | MemberPress\" \/>\n\t\t<meta property=\"og:description\" content=\"MemberPress allows you to specify a handful of different custom field types that a member must fill out when registering for a Membership account on your website. In some cases, you may want to review some documents from the user prior to approving their membership on your site. To do this, simply create a new\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1650\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1275\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-02-13T14:04:32+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-03-01T14:36:04+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/memberpress\/\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@memberpress\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to allow Members to upload files | MemberPress\" \/>\n\t\t<meta name=\"twitter:description\" content=\"MemberPress allows you to specify a handful of different custom field types that a member must fill out when registering for a Membership account on your website. In some cases, you may want to review some documents from the user prior to approving their membership on your site. To do this, simply create a new\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#article\",\"name\":\"How to allow Members to upload files | MemberPress\",\"headline\":\"How to allow Members to upload files\",\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/file-IY7U5k17Xi.png\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#articleImage\",\"width\":1125,\"height\":66},\"datePublished\":\"2024-02-13T09:04:32-05:00\",\"dateModified\":\"2024-03-01T09:36:04-05:00\",\"inLanguage\":\"pt-BR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#webpage\"},\"articleSection\":\"How To\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/faqs\\\/#listItem\",\"name\":\"FAQs\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/faqs\\\/#listItem\",\"position\":2,\"name\":\"FAQs\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/faqs\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/how-to\\\/#listItem\",\"name\":\"How To\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/how-to\\\/#listItem\",\"position\":3,\"name\":\"How To\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/how-to\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#listItem\",\"name\":\"How to allow Members to upload files\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/faqs\\\/#listItem\",\"name\":\"FAQs\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#listItem\",\"position\":4,\"name\":\"How to allow Members to upload files\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/doc-categories\\\/how-to\\\/#listItem\",\"name\":\"How To\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/mp-icon-RGB_Icon-01.jpg\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#organizationLogo\",\"width\":1650,\"height\":1275,\"caption\":\"memberpress logo icon\"},\"image\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/memberpress\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/memberpressplugin\\\/\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/MemberPressPlugin\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/memberpress\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/\",\"name\":\"Nikola M\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/litespeed\\\/avatar\\\/1edf820c48f9c430f380efe81887b154.jpg?ver=1776350726\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#webpage\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/\",\"name\":\"How to allow Members to upload files | MemberPress\",\"description\":\"MemberPress allows you to specify a handful of different custom field types that a member must fill out when registering for a Membership account on your website. In some cases, you may want to review some documents from the user prior to approving their membership on your site. To do this, simply create a new\",\"inLanguage\":\"pt-BR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/docs\\\/how-to-allow-members-to-upload-files\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"datePublished\":\"2024-02-13T09:04:32-05:00\",\"dateModified\":\"2024-03-01T09:36:04-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#website\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"inLanguage\":\"pt-BR\",\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How to allow Members to upload files | MemberPress<\/title>\n\n","aioseo_head_json":{"title":"Como permitir que os membros fa\u00e7am upload de arquivos | MemberPress","description":"O MemberPress permite especificar v\u00e1rios tipos diferentes de campos personalizados que um membro deve preencher ao se registrar para uma conta de associa\u00e7\u00e3o em seu site. Em alguns casos, talvez voc\u00ea queira analisar alguns documentos do usu\u00e1rio antes de aprovar a associa\u00e7\u00e3o dele ao seu site. Para fazer isso, basta criar um novo campo","canonical_url":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#article","name":"How to allow Members to upload files | MemberPress","headline":"How to allow Members to upload files","author":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/#author"},"publisher":{"@id":"https:\/\/memberpress.com\/pt\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2024\/02\/file-IY7U5k17Xi.png","@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#articleImage","width":1125,"height":66},"datePublished":"2024-02-13T09:04:32-05:00","dateModified":"2024-03-01T09:36:04-05:00","inLanguage":"pt-BR","mainEntityOfPage":{"@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#webpage"},"isPartOf":{"@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#webpage"},"articleSection":"How To"},{"@type":"BreadcrumbList","@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt#listItem","position":1,"name":"Home","item":"https:\/\/memberpress.com\/pt","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/faqs\/#listItem","name":"FAQs"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/faqs\/#listItem","position":2,"name":"FAQs","item":"https:\/\/memberpress.com\/pt\/doc-categories\/faqs\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/how-to\/#listItem","name":"How To"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/how-to\/#listItem","position":3,"name":"How To","item":"https:\/\/memberpress.com\/pt\/doc-categories\/how-to\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#listItem","name":"How to allow Members to upload files"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/faqs\/#listItem","name":"FAQs"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#listItem","position":4,"name":"How to allow Members to upload files","previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/doc-categories\/how-to\/#listItem","name":"How To"}}]},{"@type":"Organization","@id":"https:\/\/memberpress.com\/pt\/#organization","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","url":"https:\/\/memberpress.com\/pt\/","logo":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#organizationLogo","width":1650,"height":1275,"caption":"memberpress logo icon"},"image":{"@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#organizationLogo"},"sameAs":["https:\/\/www.instagram.com\/memberpress\/","https:\/\/www.pinterest.com\/memberpressplugin\/","https:\/\/www.youtube.com\/c\/MemberPressPlugin","https:\/\/www.linkedin.com\/company\/memberpress\/"]},{"@type":"Person","@id":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/#author","url":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/","name":"Nikola M","image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/litespeed\/avatar\/1edf820c48f9c430f380efe81887b154.jpg?ver=1776350726"}},{"@type":"WebPage","@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#webpage","url":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/","name":"How to allow Members to upload files | MemberPress","description":"MemberPress allows you to specify a handful of different custom field types that a member must fill out when registering for a Membership account on your website. In some cases, you may want to review some documents from the user prior to approving their membership on your site. To do this, simply create a new","inLanguage":"pt-BR","isPartOf":{"@id":"https:\/\/memberpress.com\/pt\/#website"},"breadcrumb":{"@id":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/#breadcrumblist"},"author":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/#author"},"creator":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/nikolacaseproof-com\/#author"},"datePublished":"2024-02-13T09:04:32-05:00","dateModified":"2024-03-01T09:36:04-05:00"},{"@type":"WebSite","@id":"https:\/\/memberpress.com\/pt\/#website","url":"https:\/\/memberpress.com\/pt\/","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","inLanguage":"pt-BR","publisher":{"@id":"https:\/\/memberpress.com\/pt\/#organization"}}]},"og:locale":"pt_BR","og:site_name":"MemberPress","og:type":"article","og:title":"How to allow Members to upload files | MemberPress","og:description":"MemberPress allows you to specify a handful of different custom field types that a member must fill out when registering for a Membership account on your website. In some cases, you may want to review some documents from the user prior to approving their membership on your site. To do this, simply create a new","og:url":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/","og:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","og:image:secure_url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","og:image:width":1650,"og:image:height":1275,"article:published_time":"2024-02-13T14:04:32+00:00","article:modified_time":"2024-03-01T14:36:04+00:00","article:publisher":"https:\/\/www.facebook.com\/memberpress\/","twitter:card":"summary_large_image","twitter:site":"@memberpress","twitter:title":"How to allow Members to upload files | MemberPress","twitter:description":"MemberPress allows you to specify a handful of different custom field types that a member must fill out when registering for a Membership account on your website. In some cases, you may want to review some documents from the user prior to approving their membership on your site. To do this, simply create a new","twitter:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg"},"aioseo_meta_data":{"post_id":"62139","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2025-10-09 21:55:22","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"ai":null,"created":"2024-02-13 14:04:33","updated":"2026-03-03 14:53:00"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\/doc-categories\/faqs\/\" title=\"FAQs\">FAQs<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\/doc-categories\/how-to\/\" title=\"How To\">How To<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to allow Members to upload files\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/memberpress.com\/pt"},{"label":"FAQs","link":"https:\/\/memberpress.com\/pt\/doc-categories\/faqs\/"},{"label":"How To","link":"https:\/\/memberpress.com\/pt\/doc-categories\/how-to\/"},{"label":"How to allow Members to upload files","link":"https:\/\/memberpress.com\/pt\/docs\/how-to-allow-members-to-upload-files\/"}],"_links":{"self":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb\/62139","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/users\/62252"}],"replies":[{"embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/comments?post=62139"}],"version-history":[{"count":0,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb\/62139\/revisions"}],"wp:attachment":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/media?parent=62139"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb-category?post=62139"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/ht-kb-tag?post=62139"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}