{"id":10943,"date":"2023-10-01T16:14:52","date_gmt":"2023-10-01T23:14:52","guid":{"rendered":"https:\/\/membermouse.com\/?post_type=ht_kb&amp;p=10943"},"modified":"2023-10-01T16:14:52","modified_gmt":"2023-10-01T23:14:52","slug":"campo-de-formulario-smarttag-mm_form_field-formulario-de-checkout","status":"publish","type":"ht_kb","link":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/","title":{"rendered":"Form Field SmartTag\u2122 (MM_Form_Field) - Formul\u00e1rio de checkout"},"content":{"rendered":"<p class=\"wp-block-paragraph\">Essa tag \u00e9 usada em conjunto com a tag MM_Form. Ela gera campos de formul\u00e1rio com os quais o usu\u00e1rio pode interagir para inserir dados.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Atributos<\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">Os tipos de campos dispon\u00edveis e outros atributos variam de acordo com o tipo de formul\u00e1rio pai. Este artigo trata dos atributos e exemplos de uso do tipo de formul\u00e1rio Checkout.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>checkout<\/strong><\/h6>\n\n\n\n<p class=\"wp-block-paragraph\"><code>tipo<\/code>&nbsp;(<em>opcional<\/em>) &#8211; Indicates the type of form field to create. Acceptable values are&nbsp;input,&nbsp;hidden,&nbsp;custom&nbsp;or&nbsp;custom-hidden. The default value is&nbsp;&#8216;input&#8217;.<\/p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>entrada<\/code>&nbsp;&#8211; Form fields of type&nbsp;&#8216;input&#8217;&nbsp;output a standard HTML form element that the user can interact with to enter in information. Based on the value&nbsp;&#8216;name&#8217;&nbsp;attribute MemberMouse will render the appropriate HTML form element. <br><br>For example, a dropdown will be rendered for selecting a Country and an input field will be rendered for entering in their first name. The&nbsp;&#8216;name&#8217;&nbsp;attribute is required for input form fields.<br><br><\/li>\n\n\n\n<li><code>oculto<\/code>&nbsp;&#8211; Form fields of type&nbsp;&#8216;hidden&#8217;&nbsp;output a hidden HTML element which indicates to MemberMouse that the&nbsp;&#8216;name&#8217;&nbsp;associated with this form field can be ignored when validating the form. <br><br>For example, when purchasing a product, billing address is required by default so MemberMouse won&#8217;t allow the user to proceed until a billing address has been provided. By using a form field of type hidden for billing address, you&#8217;re instructing MemberMouse to allow the form to be submitted without providing a billing address. This is useful when you want to provide a minimal checkout form in cases where you don&#8217;t require certain information. The&nbsp;&#8216;name&#8217;&nbsp;attribute is required for hidden form fields. The&nbsp;&#8216;value&#8217;&nbsp;attribute is optional.<br><br><\/li>\n\n\n\n<li><code>personalizado<\/code>&nbsp;&#8211; Form fields of type&nbsp;&#8216;custom&#8217;&nbsp;output an HTML form element that the user can interact with to enter in information associated with custom fields you&#8217;ve configured in MemberMouse. The&nbsp;&#8216;id&#8217;&nbsp;attribute is required for custom form fields. The&nbsp;&#8216;isRequired&#8217;&nbsp;attribute is optional.<br><br><\/li>\n\n\n\n<li><code>oculto personalizado<\/code>&nbsp;&#8211; Form fields of type&nbsp;&#8216;custom-hidden&#8217;&nbsp;output a hidden HTML form element that stores data associated with custom fields you&#8217;ve configured in MemberMouse. The&nbsp;&#8216;id&#8217;&nbsp;attribute is required for custom form fields. The&nbsp;&#8216;isRequired&#8217;&nbsp;attribute is optional. <br><br>Hidden custom fields are perfect for storing information related to the order that the user doesn&#8217;t enter. <br><br>For example, you could track the ad name they came from, which keyword they used to find your product, etc. All you need to do is pass a querystring parameter to the page in the following format:&nbsp;&#8216;cf_{ID}&#8217;&nbsp;where&nbsp;&#8216;{ID}&#8217;&nbsp;is replaced by the ID of the custom field. <br><br>Here&#8217;s an example:&nbsp;http:\/\/mysite.com\/checkout?cf_1=banner-1&amp;cf_2=marketing. In this example, we&#8217;re passing&nbsp;&#8216;banner-1&#8217;&nbsp;as the value for the custom field with ID 1 and&nbsp;&#8216;marketing&#8217;&nbsp;as the value for the custom field with ID 2.<br><br><\/li>\n\n\n\n<li><code>nome<\/code>&nbsp;(<em>condicional com base no tipo de campo<\/em>) &#8211; This field is required for&nbsp;&#8216;input&#8217;&nbsp;and&nbsp;&#8216;hidden&#8217;&nbsp;field types. It indicates what data is being collected in the field. <br><br>Abaixo est\u00e1 uma tabela de valores aceit\u00e1veis. <br><br>If a field is optional this means you don&#8217;t have to include it in the form. If it&#8217;s required, you have to include it in the form, but in a number of cases you can hide required fields from being seen by setting the type to&nbsp;hidden. <br><br>Certain names are valid for both&nbsp;&#8216;input&#8217;&nbsp;and&nbsp;&#8216;hidden&#8217;&nbsp;field types while others are valid just for&nbsp;&#8216;input&#8217;&nbsp;fields.<\/li>\n<\/ul>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Valor<\/strong><\/td><td><strong>Descri\u00e7\u00e3o<\/strong><\/td><td><strong>Opcional<\/strong><\/td><td><strong>Tipos de campos v\u00e1lidos<\/strong><\/td><\/tr><tr><td><code>firstName<\/code><\/td><td>Collects the user&#8217;s first name<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>lastName<\/code><\/td><td>Collects the user&#8217;s last name<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>e-mail<\/code><\/td><td>Collects the user&#8217;s email address<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>confirma\u00e7\u00e3o de e-mail<\/code><\/td><td>For\u00e7a o usu\u00e1rio a confirmar seu endere\u00e7o de e-mail<\/td><td>Sim<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>nome de usu\u00e1rio<\/code><\/td><td>Collects the user&#8217;s username<\/td><td>Sim<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>telefone<\/code><\/td><td>Collects the user&#8217;s phone number<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>senha<\/code><\/td><td>Collects the user&#8217;s password<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>captcha<\/code><\/td><td>For\u00e7a o usu\u00e1rio a preencher um campo captcha para valida\u00e7\u00e3o<\/td><td>Sim<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>billingAddress<\/code><\/td><td>Collects the user&#8217;s billing address<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>billingCity<\/code><\/td><td>Collects the user&#8217;s billing city<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>estado do faturamento<\/code><\/td><td>Collects the user&#8217;s billing state<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>billingZipCode<\/code><\/td><td>Collects the user&#8217;s billing zip code<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>billingCountry<\/code><\/td><td>Collects the user&#8217;s billing country<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>shippingAddress<\/code><\/td><td>Collects the user&#8217;s shipping address<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>shippingCity<\/code><\/td><td>Collects the user&#8217;s shipping city<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>estado da remessa<\/code><\/td><td>Collects the user&#8217;s shipping state<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>shippingZipCode<\/code><\/td><td>Collects the user&#8217;s shipping zip code<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>shippingCountry<\/code><\/td><td>Collects the user&#8217;s shipping country<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>shippingMethod<\/code><\/td><td>Coleta o m\u00e9todo de envio que o usu\u00e1rio deseja usar<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>shippingSameAsBilling<\/code><\/td><td>Outputs a checkbox the user can click to indicate whether or not they want to provide a shipping address that&#8217;s different from their billing address.<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>ccN\u00famero<\/code><\/td><td>Collects the user&#8217;s credit card number<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>ccData de expira\u00e7\u00e3o<\/code><\/td><td>Collects the expiration date associated with the user&#8217;s credit card number<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>ccSecurityCode<\/code><\/td><td>Collects the security code associated with the user&#8217;s credit card number<\/td><td>N\u00e3o<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>c\u00f3digo do cupom<\/code><\/td><td>Coleta o c\u00f3digo de cupom que o usu\u00e1rio deseja aplicar ao pedido<\/td><td>Sim<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>presente<\/code><\/td><td>Gera uma caixa de sele\u00e7\u00e3o que o usu\u00e1rio pode clicar para indicar se o produto que est\u00e1 sendo comprado \u00e9 um presente.<\/td><td>Sim<\/td><td><code>entrada<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>classe<\/code>&nbsp;(<em>condicional com base no tipo de campo<\/em>) &#8211; This field is optional for&nbsp;&#8216;input&#8217;&nbsp;and&nbsp;&#8216;custom&#8217;&nbsp;fields. It indicates the CSS class that should be used for the field.<br><br><\/li>\n\n\n\n<li><code>valor<\/code>&nbsp;(<em>condicional com base no tipo de campo<\/em>) &#8211; This field is optional for&nbsp;&#8216;hidden&#8217;&nbsp;fields. It specifies the default data to set for the field specified in the&nbsp;&#8216;name&#8217;&nbsp;attribute.<br><br><\/li>\n\n\n\n<li><code>id<\/code>&nbsp;(<em>condicional com base no tipo de campo<\/em>) &#8211; This field is required for&nbsp;&#8216;custom&#8217;&nbsp;and&nbsp;&#8216;custom-hidden&#8217;&nbsp;fields. It specifies the ID of the custom field to collect data for.<br><br><\/li>\n\n\n\n<li><code>isRequired<\/code>&nbsp;(<em>condicional com base no tipo de campo<\/em>) &#8211; This field is optional for&nbsp;&#8216;custom&#8217;&nbsp;and&nbsp;&#8216;custom-hidden&#8217;&nbsp;fields. It indicates whether the custom field should be required. Acceptable values are&nbsp;&#8216;true&#8217;&nbsp;and&nbsp;&#8216;false&#8217;. The default value is&nbsp;&#8216;false&#8217;. This attribute can also be use on&nbsp;&#8216;input&#8217;&nbsp;fields that can be hidden. This includes &nbsp;firstName, &nbsp;lastName, &nbsp;phone, &nbsp;password, &nbsp;billingAddress, billingCity,&nbsp;billingState,&nbsp;billingZipCode,&nbsp;billingCountry,&nbsp;shippingAddress,&nbsp;shippingCity,&nbsp;shippingState,shippingZipCode.<br><br><\/li>\n\n\n\n<li><code>padr\u00e3o<\/code>&nbsp;(<em>condicional com base no nome do campo<\/em>) &#8211; This field is optional when the&nbsp;&#8216;name&#8217;&nbsp;is set to&nbsp;&#8216;shippingMethod&#8217;. Here you can specify the key of the shipping method to use as the default. Read this article to&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/membermouse.com\/pt\/documentos-3-2\/definir-o-metodo-de-envio-padrao\/\" target=\"_blank\">Saiba como pesquisar a chave do m\u00e9todo de envio<\/a>.<br><br><\/li>\n\n\n\n<li><code>customAttributes<\/code>&nbsp;(<em>condicional com base no tipo de campo<\/em>)&nbsp;&#8211; This field is optional for&nbsp;&#8216;input&#8217;&nbsp;fields. This attribute can be used to add additional HTML attributes to the HTML input field generated by MemberMouse. Whatever is set in this attribute will be added to the HTML verbatim. For example, if you do the following:<\/li>\n<\/ul>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>[MM_Form_Field type='input' name='firstName' customAttributes='placeholder=\"First Name\"']<\/code><\/pre>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">O seguinte HTML ser\u00e1 gerado:<\/p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;input type=\"text\" id=\"mm_field_first_name\" name=\"mm_field_first_name\" class=\"mm-textField\" placeholder=\"First Name\"&gt;<\/code><\/pre>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Exemplo de uso completo<\/h5>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>[MM_Form type='checkout']\n\nCampos de entrada:\nPrimeiro nome: [MM_Form_Field type='input' name='firstName']\nLast Name (Sobrenome): [MM_Form_Field type='input' name='lastName']\n\nCampos ocultos:\n[MM_Form_Field type='hidden' name='billingAddress']\n[MM_Form_Field type='hidden' name='billingCity']\n[MM_Form_Field type='hidden' name='billingState' value='TX']\n[MM_Form_Field type='hidden' name='billingCountry' value='US']\n\nCampos personalizados:\nBirthday (Anivers\u00e1rio): [MM_Form_Field type='custom' id='1' isRequired='true']\nAltura: [MM_Form_Field type='custom' id='3' isRequired='false']\n\nCampo personalizado oculto:\n[MM_Form_Field type='custom-hidden' id='5']\n\n...outras SmartTags de formul\u00e1rio...\n[\/MM_Form]<\/code><\/pre>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>","protected":false},"excerpt":{"rendered":"<p>Essa tag \u00e9 usada em conjunto com a tag MM_Form. Ela gera campos de formul\u00e1rio com os quais o usu\u00e1rio pode interagir para inserir dados. Atributos Os tipos de campo dispon\u00edveis e outros atributos ser\u00e3o...<\/p>","protected":false},"author":20918,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"ht-kb-category":[181],"ht-kb-tag":[],"class_list":["post-10943","ht_kb","type-ht_kb","status-publish","format-standard","hentry","ht_kb_category-form-tags"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 5.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Finding the perfect WordPress membership site theme is no easy task. In this article, you&#039;ll discover what to look for in a theme and see some great examples.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Blair\"\/>\n\t<meta name=\"google-site-verification\" content=\"RIQFHn-t5QxsuMU4pLG9xaceb-mmGuRaOWAEU1Q078U\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 5.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"pt_BR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"MemberMouse |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How To Choose The Best WordPress Membership Site Theme\" \/>\n\t\t<meta property=\"og:description\" content=\"Finding the perfect WordPress membership site theme is no easy task. In this article, you&#039;ll discover what to look for in a theme and see some great examples.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-10-01T23:14:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-10-01T23:14:52+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/membermouse\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@MemberMouse\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How To Choose The Best WordPress Membership Site Theme\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Finding the perfect WordPress membership site theme is no easy task. In this article, you&#039;ll discover what to look for in a theme and see some great examples.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@MemberMouse\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/membermouse.com\\\/pt\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/article-categories\\\/mm-smarttags\\\/#listItem\",\"name\":\"SmartTags\\u2122\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/article-categories\\\/mm-smarttags\\\/#listItem\",\"position\":2,\"name\":\"SmartTags\\u2122\",\"item\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/article-categories\\\/mm-smarttags\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/article-categories\\\/form-tags\\\/#listItem\",\"name\":\"Form SmartTags\\u2122\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/article-categories\\\/form-tags\\\/#listItem\",\"position\":3,\"name\":\"Form SmartTags\\u2122\",\"item\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/article-categories\\\/form-tags\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#listItem\",\"name\":\"Form Field SmartTag&#x2122; (MM_Form_Field) &#8211; Checkout form\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/article-categories\\\/mm-smarttags\\\/#listItem\",\"name\":\"SmartTags\\u2122\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#listItem\",\"position\":4,\"name\":\"Form Field SmartTag&#x2122; (MM_Form_Field) &#8211; Checkout form\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/article-categories\\\/form-tags\\\/#listItem\",\"name\":\"Form SmartTags\\u2122\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/#organization\",\"name\":\"MemberMouse\",\"url\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/membermouse\",\"https:\\\/\\\/twitter.com\\\/MemberMouse\",\"https:\\\/\\\/www.instagram.com\\\/membermouse\\\/\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/membermouse\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/membermouse\\\/\",\"https:\\\/\\\/soundcloud.com\\\/membermouse\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/author\\\/blaircaseproof-com\\\/#author\",\"url\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/author\\\/blaircaseproof-com\\\/\",\"name\":\"Blair\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#authorImage\",\"url\":\"https:\\\/\\\/membermouse.com\\\/wp-content\\\/litespeed\\\/avatar\\\/5b6227a6ed29e339c22d01fe541a969c.jpg?ver=1787612394\",\"width\":96,\"height\":96,\"caption\":\"Blair\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#webpage\",\"url\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/\",\"name\":\"How To Choose The Best WordPress Membership Site Theme\",\"description\":\"Finding the perfect WordPress membership site theme is no easy task. In this article, you'll discover what to look for in a theme and see some great examples.\",\"inLanguage\":\"pt-BR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/author\\\/blaircaseproof-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/author\\\/blaircaseproof-com\\\/#author\"},\"datePublished\":\"2023-10-01T16:14:52-04:00\",\"dateModified\":\"2023-10-01T16:14:52-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/#website\",\"url\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/\",\"name\":\"MemberMouse\",\"inLanguage\":\"pt-BR\",\"publisher\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/pt\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How To Choose The Best WordPress Membership Site Theme<\/title>\n\n","aioseo_head_json":{"title":"Como escolher o melhor tema de site de associa\u00e7\u00e3o do WordPress","description":"Encontrar o tema perfeito para o site de associa\u00e7\u00e3o do WordPress n\u00e3o \u00e9 uma tarefa f\u00e1cil. Neste artigo, voc\u00ea descobrir\u00e1 o que procurar em um tema e ver\u00e1 alguns \u00f3timos exemplos.","canonical_url":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"RIQFHn-t5QxsuMU4pLG9xaceb-mmGuRaOWAEU1Q078U","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt#listItem","position":1,"name":"Home","item":"https:\/\/membermouse.com\/pt","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt\/article-categories\/mm-smarttags\/#listItem","name":"SmartTags\u2122"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt\/article-categories\/mm-smarttags\/#listItem","position":2,"name":"SmartTags\u2122","item":"https:\/\/membermouse.com\/pt\/article-categories\/mm-smarttags\/","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt\/article-categories\/form-tags\/#listItem","name":"Form SmartTags\u2122"},"previousItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt\/article-categories\/form-tags\/#listItem","position":3,"name":"Form SmartTags\u2122","item":"https:\/\/membermouse.com\/pt\/article-categories\/form-tags\/","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#listItem","name":"Form Field SmartTag&#x2122; (MM_Form_Field) &#8211; Checkout form"},"previousItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt\/article-categories\/mm-smarttags\/#listItem","name":"SmartTags\u2122"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#listItem","position":4,"name":"Form Field SmartTag&#x2122; (MM_Form_Field) &#8211; Checkout form","previousItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/pt\/article-categories\/form-tags\/#listItem","name":"Form SmartTags\u2122"}}]},{"@type":"Organization","@id":"https:\/\/membermouse.com\/pt\/#organization","name":"MemberMouse","url":"https:\/\/membermouse.com\/pt\/","sameAs":["https:\/\/www.facebook.com\/membermouse","https:\/\/twitter.com\/MemberMouse","https:\/\/www.instagram.com\/membermouse\/","https:\/\/www.youtube.com\/user\/membermouse","https:\/\/www.linkedin.com\/company\/membermouse\/","https:\/\/soundcloud.com\/membermouse"]},{"@type":"Person","@id":"https:\/\/membermouse.com\/pt\/author\/blaircaseproof-com\/#author","url":"https:\/\/membermouse.com\/pt\/author\/blaircaseproof-com\/","name":"Blair","image":{"@type":"ImageObject","@id":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#authorImage","url":"https:\/\/membermouse.com\/wp-content\/litespeed\/avatar\/5b6227a6ed29e339c22d01fe541a969c.jpg?ver=1787612394","width":96,"height":96,"caption":"Blair"}},{"@type":"WebPage","@id":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#webpage","url":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/","name":"How To Choose The Best WordPress Membership Site Theme","description":"Finding the perfect WordPress membership site theme is no easy task. In this article, you'll discover what to look for in a theme and see some great examples.","inLanguage":"pt-BR","isPartOf":{"@id":"https:\/\/membermouse.com\/pt\/#website"},"breadcrumb":{"@id":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#breadcrumblist"},"author":{"@id":"https:\/\/membermouse.com\/pt\/author\/blaircaseproof-com\/#author"},"creator":{"@id":"https:\/\/membermouse.com\/pt\/author\/blaircaseproof-com\/#author"},"datePublished":"2023-10-01T16:14:52-04:00","dateModified":"2023-10-01T16:14:52-04:00"},{"@type":"WebSite","@id":"https:\/\/membermouse.com\/pt\/#website","url":"https:\/\/membermouse.com\/pt\/","name":"MemberMouse","inLanguage":"pt-BR","publisher":{"@id":"https:\/\/membermouse.com\/pt\/#organization"}}]},"og:locale":"pt_BR","og:site_name":"MemberMouse |","og:type":"article","og:title":"How To Choose The Best WordPress Membership Site Theme","og:description":"Finding the perfect WordPress membership site theme is no easy task. In this article, you'll discover what to look for in a theme and see some great examples.","og:url":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/","article:published_time":"2023-10-01T23:14:52+00:00","article:modified_time":"2023-10-01T23:14:52+00:00","article:publisher":"https:\/\/www.facebook.com\/membermouse","twitter:card":"summary_large_image","twitter:site":"@MemberMouse","twitter:title":"How To Choose The Best WordPress Membership Site Theme","twitter:description":"Finding the perfect WordPress membership site theme is no easy task. In this article, you'll discover what to look for in a theme and see some great examples.","twitter:creator":"@MemberMouse"},"aioseo_meta_data":{"post_id":"10943","title":"Como escolher o melhor tema de site de associa\u00e7\u00e3o do WordPress","description":"Encontrar o tema perfeito para o site de associa\u00e7\u00e3o do WordPress n\u00e3o \u00e9 uma tarefa f\u00e1cil. Neste artigo, voc\u00ea descobrir\u00e1 o que procurar em um tema e ver\u00e1 alguns \u00f3timos exemplos.","keywords":[],"keyphrases":{"focus":{"keyphrase":"wordpress membership site theme","score":80,"analysis":{"keyphraseInTitle":{"title":"Focus Keyphrase in SEO title","description":"Focus Keyphrase found in SEO title.","score":9,"maxScore":9,"error":0},"keyphraseInDescription":{"title":"Focus keyphrase in meta description","description":"Focus keyphrase found in meta description.","score":9,"maxScore":9,"error":0},"keyphraseInURL":{"title":"Focus Keyphrase in URL","description":"Focus Keyphrase used in the URL.","score":5,"maxScore":5,"error":0},"keyphraseInIntroduction":{"title":"Focus keyphrase in introduction","description":"Your Focus keyphrase does not appear in the first paragraph. Make sure the topic is clear immediately.","score":3,"maxScore":9,"error":1},"keyphraseInSubHeadings":{"title":"Focus Keyphrase in Subheadings","description":"Use more focus keyphrases in your H2 and H3 subheadings!","score":3,"maxScore":9,"error":1},"keyphraseLength":{"title":"Focus keyphrase length","description":"Good job!","score":9,"maxScore":9,"error":0,"length":4},"keyphraseInImageAlt":{"title":"Focus keyphrase in image alt attributes","description":"Focus keyphrase found in image alt attribute(s).","score":9,"maxScore":9,"error":0}}},"additional":[{"keyphrase":"best wordpress theme for membership site","score":58,"analysis":{"keyphraseInDescription":{"title":"Keyphrase in meta description","description":"Keyphrase not found in meta description.","score":3,"maxScore":9,"error":1},"keyphraseInIntroduction":{"title":"Keyphrase in introduction","description":"Your Keyphrase does not appear in the first paragraph. Make sure the topic is clear immediately.","score":3,"maxScore":9,"error":1},"keyphraseInImageAlt":{"title":"Keyphrase in image alt attributes","description":"Keyphrase found in image alt attribute(s).","score":9,"maxScore":9,"error":0},"keyphraseLength":{"title":"Keyphrase length","description":"Keyphrase is slightly long. Try to make it shorter.","score":6,"maxScore":9,"error":1,"length":6}}}]},"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":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"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":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":{"businessInfo":{"name":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"line1":"","line2":"","zip":"","city":"","state":"","country":""},"contact":{"email":"","phone":"","fax":""},"ids":{"vatID":"","taxID":"","chamberID":""},"payment":{"priceIndication":"","currenciesAccepted":"","methodsAccepted":""},"areaServed":""},"openingHours":{"show":false,"closedLabel":"","open24h":false,"open24hLabel":"","open247":false,"use24hFormat":false,"twoSets":false,"timezone":"","hours":[]}},"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"created":"2021-06-28 18:24:33","updated":"2026-06-03 06:01:37","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":"2026-06-03 01:11:04","focus_keyword":"wordpress membership site theme","additional_keywords":[{"word":"best wordpress theme for membership site","score":58}],"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/membermouse.com\/pt\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/membermouse.com\/pt\/article-categories\/mm-smarttags\/\" title=\"SmartTags\u2122\">SmartTags\u2122<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/membermouse.com\/pt\/article-categories\/form-tags\/\" title=\"Form SmartTags\u2122\">Form SmartTags\u2122<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tForm Field SmartTag\u2122 (MM_Form_Field) \u2013 Checkout form\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/membermouse.com\/pt"},{"label":"SmartTags\u2122","link":"https:\/\/membermouse.com\/pt\/article-categories\/mm-smarttags\/"},{"label":"Form SmartTags\u2122","link":"https:\/\/membermouse.com\/pt\/article-categories\/form-tags\/"},{"label":"Form Field SmartTag&#x2122; (MM_Form_Field) &#8211; Checkout form","link":"https:\/\/membermouse.com\/pt\/docs\/form-field-smarttag-mm_form_field-checkout-form\/"}],"_links":{"self":[{"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/ht-kb\/10943","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/users\/20918"}],"replies":[{"embeddable":true,"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/comments?post=10943"}],"version-history":[{"count":0,"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/ht-kb\/10943\/revisions"}],"wp:attachment":[{"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/media?parent=10943"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/ht-kb-category?post=10943"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/membermouse.com\/pt\/wp-json\/wp\/v2\/ht-kb-tag?post=10943"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}