{"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":"form-field-smarttag-mm_form_field-checkout-form","status":"publish","type":"ht_kb","link":"https:\/\/membermouse.com\/es\/docs\/form-field-smarttag-mm_form_field-checkout-form\/","title":{"rendered":"Form Field SmartTag\u2122 (MM_Form_Field) - Formulario de pago"},"content":{"rendered":"<p class=\"wp-block-paragraph\">Esta etiqueta se utiliza junto con la etiqueta MM_Form. Genera campos de formulario con los que el usuario puede interactuar para introducir datos.<\/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\">Los tipos de campo disponibles y otros atributos variar\u00e1n en funci\u00f3n del tipo de formulario principal. Este art\u00edculo trata de los atributos y ejemplos de uso para el tipo de formulario 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>nombre<\/code>&nbsp;(<em>condicional en funci\u00f3n del 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>A continuaci\u00f3n figura una tabla de valores aceptables. <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>Descripci\u00f3n<\/strong><\/td><td><strong>Opcional<\/strong><\/td><td><strong>Tipos de campo v\u00e1lidos<\/strong><\/td><\/tr><tr><td><code>firstName<\/code><\/td><td>Collects the user&#8217;s first name<\/td><td>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>apellido<\/code><\/td><td>Collects the user&#8217;s last name<\/td><td>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>correo electr\u00f3nico<\/code><\/td><td>Collects the user&#8217;s email address<\/td><td>No<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>email-confirmar<\/code><\/td><td>Obliga al usuario a confirmar su direcci\u00f3n de correo electr\u00f3nico<\/td><td>S\u00ed<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>nombre de usuario<\/code><\/td><td>Collects the user&#8217;s username<\/td><td>S\u00ed<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>tel\u00e9fono<\/code><\/td><td>Collects the user&#8217;s phone number<\/td><td>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>contrase\u00f1a<\/code><\/td><td>Collects the user&#8217;s password<\/td><td>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>captcha<\/code><\/td><td>Obliga al usuario a rellenar un campo captcha para su validaci\u00f3n<\/td><td>S\u00ed<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>direcci\u00f3n de facturaci\u00f3n<\/code><\/td><td>Collects the user&#8217;s billing address<\/td><td>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>facturaci\u00f3nCity<\/code><\/td><td>Collects the user&#8217;s billing city<\/td><td>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>billingState<\/code><\/td><td>Collects the user&#8217;s billing state<\/td><td>No<\/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>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>facturaci\u00f3nPa\u00eds<\/code><\/td><td>Collects the user&#8217;s billing country<\/td><td>No<\/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>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>env\u00edoCiudad<\/code><\/td><td>Collects the user&#8217;s shipping city<\/td><td>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>shippingState<\/code><\/td><td>Collects the user&#8217;s shipping state<\/td><td>No<\/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>No<\/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>No<\/td><td><code>entrada<\/code>,&nbsp;<code>oculto<\/code><\/td><\/tr><tr><td><code>shippingMethod<\/code><\/td><td>Recoge el m\u00e9todo de env\u00edo que el usuario desea utilizar<\/td><td>No<\/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>No<\/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>No<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>ccFecha de caducidad<\/code><\/td><td>Collects the expiration date associated with the user&#8217;s credit card number<\/td><td>No<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>ccC\u00f3digoSeguridad<\/code><\/td><td>Collects the security code associated with the user&#8217;s credit card number<\/td><td>No<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>c\u00f3digo de cup\u00f3n<\/code><\/td><td>Recoge el c\u00f3digo de cup\u00f3n que el usuario quiere aplicar al pedido<\/td><td>S\u00ed<\/td><td><code>entrada<\/code><\/td><\/tr><tr><td><code>regalo<\/code><\/td><td>Genera una casilla de verificaci\u00f3n en la que el usuario puede hacer clic para indicar si el producto que se est\u00e1 comprando es un regalo.<\/td><td>S\u00ed<\/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>clase<\/code>&nbsp;(<em>condicional en funci\u00f3n del 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 en funci\u00f3n del 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 en funci\u00f3n del 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 en funci\u00f3n del 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>por defecto<\/code>&nbsp;(<em>condicional basado en el nombre del 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\/es\/docs\/establecer-el-metodo-de-envio-por-defecto\/\" target=\"_blank\">aprenda a buscar la clave de m\u00e9todo de env\u00edo<\/a>.<br><br><\/li>\n\n\n\n<li><code>customAttributes<\/code>&nbsp;(<em>condicional en funci\u00f3n del 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='nombre' customAttributes='placeholder=\"Nombre\"']<\/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\">Se generar\u00e1 el siguiente HTML:<\/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\">Ejemplo 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:\nNombre: [MM_Form_Field type='input' name='firstName']\nApellidos: [MM_Form_Field type='input' name='apellido']\n\nCampos ocultos:\n[MM_Form_Field type='hidden' name='direcci\u00f3n de facturaci\u00f3n']\n[MM_Form_Field type='hidden' name='ciudad_de_facturaci\u00f3n']\n[MM_Form_Field type='hidden' name='billingState' value='TX']\n[MM_Form_Field type='hidden' name='billingCountry' value='US']\n\nCampos personalizados:\nCumplea\u00f1os: [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...otras SmartTags del formulario...\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>Esta etiqueta se utiliza junto con la etiqueta MM_Form. Genera campos de formulario con los que el usuario puede interactuar para introducir datos. Atributos Los tipos de campo disponibles y otros atributos...<\/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\/es\/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=\"es_ES\" \/>\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\/es\/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\\\/es\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/membermouse.com\\\/es\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/article-categories\\\/mm-smarttags\\\/#listItem\",\"name\":\"SmartTags\\u2122\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/article-categories\\\/mm-smarttags\\\/#listItem\",\"position\":2,\"name\":\"SmartTags\\u2122\",\"item\":\"https:\\\/\\\/membermouse.com\\\/es\\\/article-categories\\\/mm-smarttags\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/article-categories\\\/form-tags\\\/#listItem\",\"name\":\"Form SmartTags\\u2122\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/article-categories\\\/form-tags\\\/#listItem\",\"position\":3,\"name\":\"Form SmartTags\\u2122\",\"item\":\"https:\\\/\\\/membermouse.com\\\/es\\\/article-categories\\\/form-tags\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/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\\\/es\\\/article-categories\\\/mm-smarttags\\\/#listItem\",\"name\":\"SmartTags\\u2122\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/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\\\/es\\\/article-categories\\\/form-tags\\\/#listItem\",\"name\":\"Form SmartTags\\u2122\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/#organization\",\"name\":\"MemberMouse\",\"url\":\"https:\\\/\\\/membermouse.com\\\/es\\\/\",\"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\\\/es\\\/author\\\/blaircaseproof-com\\\/#author\",\"url\":\"https:\\\/\\\/membermouse.com\\\/es\\\/author\\\/blaircaseproof-com\\\/\",\"name\":\"Blair\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#authorImage\",\"url\":\"https:\\\/\\\/membermouse.com\\\/wp-content\\\/litespeed\\\/avatar\\\/5b6227a6ed29e339c22d01fe541a969c.jpg?ver=1788217201\",\"width\":96,\"height\":96,\"caption\":\"Blair\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#webpage\",\"url\":\"https:\\\/\\\/membermouse.com\\\/es\\\/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\":\"es-ES\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/docs\\\/form-field-smarttag-mm_form_field-checkout-form\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/author\\\/blaircaseproof-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/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\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/membermouse.com\\\/es\\\/\",\"name\":\"MemberMouse\",\"inLanguage\":\"es-ES\",\"publisher\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/es\\\/#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":"C\u00f3mo elegir el mejor tema de WordPress para sitios de membres\u00eda","description":"Encontrar el tema de WordPress perfecto para un sitio de afiliaci\u00f3n no es tarea f\u00e1cil. En este art\u00edculo, descubrir\u00e1s qu\u00e9 buscar en un tema y ver\u00e1s algunos ejemplos fant\u00e1sticos.","canonical_url":"https:\/\/membermouse.com\/es\/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\/es\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/membermouse.com\/es#listItem","position":1,"name":"Home","item":"https:\/\/membermouse.com\/es","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/es\/article-categories\/mm-smarttags\/#listItem","name":"SmartTags\u2122"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/es\/article-categories\/mm-smarttags\/#listItem","position":2,"name":"SmartTags\u2122","item":"https:\/\/membermouse.com\/es\/article-categories\/mm-smarttags\/","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/es\/article-categories\/form-tags\/#listItem","name":"Form SmartTags\u2122"},"previousItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/es#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/es\/article-categories\/form-tags\/#listItem","position":3,"name":"Form SmartTags\u2122","item":"https:\/\/membermouse.com\/es\/article-categories\/form-tags\/","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/es\/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\/es\/article-categories\/mm-smarttags\/#listItem","name":"SmartTags\u2122"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/es\/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\/es\/article-categories\/form-tags\/#listItem","name":"Form SmartTags\u2122"}}]},{"@type":"Organization","@id":"https:\/\/membermouse.com\/es\/#organization","name":"MemberMouse","url":"https:\/\/membermouse.com\/es\/","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\/es\/author\/blaircaseproof-com\/#author","url":"https:\/\/membermouse.com\/es\/author\/blaircaseproof-com\/","name":"Blair","image":{"@type":"ImageObject","@id":"https:\/\/membermouse.com\/es\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#authorImage","url":"https:\/\/membermouse.com\/wp-content\/litespeed\/avatar\/5b6227a6ed29e339c22d01fe541a969c.jpg?ver=1788217201","width":96,"height":96,"caption":"Blair"}},{"@type":"WebPage","@id":"https:\/\/membermouse.com\/es\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#webpage","url":"https:\/\/membermouse.com\/es\/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":"es-ES","isPartOf":{"@id":"https:\/\/membermouse.com\/es\/#website"},"breadcrumb":{"@id":"https:\/\/membermouse.com\/es\/docs\/form-field-smarttag-mm_form_field-checkout-form\/#breadcrumblist"},"author":{"@id":"https:\/\/membermouse.com\/es\/author\/blaircaseproof-com\/#author"},"creator":{"@id":"https:\/\/membermouse.com\/es\/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\/es\/#website","url":"https:\/\/membermouse.com\/es\/","name":"MemberMouse","inLanguage":"es-ES","publisher":{"@id":"https:\/\/membermouse.com\/es\/#organization"}}]},"og:locale":"es_ES","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\/es\/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":"C\u00f3mo elegir el mejor tema de WordPress para sitios de membres\u00eda","description":"Encontrar el tema de WordPress perfecto para un sitio de afiliaci\u00f3n no es tarea f\u00e1cil. En este art\u00edculo, descubrir\u00e1s qu\u00e9 buscar en un tema y ver\u00e1s algunos ejemplos fant\u00e1sticos.","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\/es\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/membermouse.com\/es\/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\/es\/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\/es"},{"label":"SmartTags\u2122","link":"https:\/\/membermouse.com\/es\/article-categories\/mm-smarttags\/"},{"label":"Form SmartTags\u2122","link":"https:\/\/membermouse.com\/es\/article-categories\/form-tags\/"},{"label":"Form Field SmartTag&#x2122; (MM_Form_Field) &#8211; Checkout form","link":"https:\/\/membermouse.com\/es\/docs\/form-field-smarttag-mm_form_field-checkout-form\/"}],"_links":{"self":[{"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/ht-kb\/10943","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/users\/20918"}],"replies":[{"embeddable":true,"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/comments?post=10943"}],"version-history":[{"count":0,"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/ht-kb\/10943\/revisions"}],"wp:attachment":[{"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/media?parent=10943"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/ht-kb-category?post=10943"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/membermouse.com\/es\/wp-json\/wp\/v2\/ht-kb-tag?post=10943"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}