{"id":7627,"date":"2023-08-11T16:07:30","date_gmt":"2023-08-11T23:07:30","guid":{"rendered":"https:\/\/membermouse.com\/?post_type=ht_kb&amp;p=7627"},"modified":"2023-08-11T16:07:30","modified_gmt":"2023-08-11T23:07:30","slug":"recueillir-des-informations-supplementaires-sur-les-membres","status":"publish","type":"ht_kb","link":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/","title":{"rendered":"Recueillir des informations suppl\u00e9mentaires sur les membres sur la page de paiement"},"content":{"rendered":"<p class=\"wp-block-paragraph\">MemberMouse vous permet de\u00a0<a href=\"https:\/\/membermouse.com\/fr\/documents-3-2\/creer-un-champ-de-caisse-personnalise\/\">cr\u00e9er des champs personnalis\u00e9s<\/a>\u00a0in order to associate additional data with each member&#8217;s account, which allows for an even greater ability to allow or restrict access using\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/membermouse.com\/fr\/documents-3-2\/decision-du-membre-smarttag-mm_member_decision\/\" target=\"_blank\">D\u00e9cision du membre SmartTags\u2122<\/a>. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Custom fields are identified by the ID assigned to them in MemberMouse. In the following example we&#8217;ll show you how the different types of custom fields can be used to collect custom information through a checkout form.<\/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\"><strong>Voici le code personnalis\u00e9 utilis\u00e9 pour afficher les 5 diff\u00e9rents types de champs personnalis\u00e9s<\/strong><\/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>&lt;p class=&quot;mm-formField&quot;&gt;\n  &lt;label&gt;Date de naissance :&lt;\/label&gt;\n  [MM_Form_Field type=&#039;custom&#039; id=&#039;4&#039; isRequired=&#039;false&#039; class=&#039; customAttributes=&#039;placeholder=&quot;Birth Date&quot;&#039;]\n  &lt;\/p&gt;\n  &lt;p class=&quot;mm-formField&quot;&gt;\n    &lt;label&gt;Cliquez ici pour acc&eacute;der au contenu cach&eacute; :&lt;\/label&gt;\n    [MM_Form_Field type=&#039;custom&#039; id=&#039;5&#039; isRequired=&#039;false&#039; class=&#039;&#039;&#039;]\n  &lt;\/p&gt;\n  &lt;p class=&quot;mm-formField&quot;&gt;\n    &lt;label&gt;Moment pr&eacute;f&eacute;r&eacute; de la journ&eacute;e :&lt;\/label&gt;\n    [MM_Form_Field type=&#039;custom&#039; id=&#039;7&#039; isRequired=&#039;false&#039; class=&#039;&#039;&#039;]\n  &lt;\/p&gt;\n  &lt;p class=&quot;mm-formField&quot;&gt;\n    &lt;label&gt;Des questions ?&lt;\/label&gt;\n    [MM_Form_Field type=&#039;custom&#039; id=&#039;8&#039; isRequired=&#039;false&#039; class=&#039;&#039;]\n  &lt;\/p&gt;\n  &lt;p class=&quot;mm-formField&quot;&gt;\n    &lt;label&gt;Comment se d&eacute;roule la proc&eacute;dure d&#039;inscription ?&lt;\/label&gt;\n    [MM_Form_Field type=&#039;custom&#039; id=&#039;9&#039; isRequired=&#039;false&#039; class=&#039;&#039;]\n  &lt;\/p&gt;<\/code><\/pre>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Voici un mod\u00e8le complet utilisant le code ci-dessus avec la page de paiement d'origine<\/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>&lt;div class=&quot;mm-checkoutContainer&quot;&gt;\n[MM_Form type=&#039;checkout&#039;]\n\n[MM_Form_Message type=&#039;error&#039;]&lt;p&gt;&lt;\/p&gt;\n&lt;div class=&quot;mm_left_column&quot;&gt;\n[MM_Form_Section type=&#039;accountInfo&#039;]&lt;p&gt;&lt;\/p&gt;\n&lt;div id=&quot;mm-account-information-section&quot; class=&quot;mm-checkoutInfoBlock&quot;&gt;\n&lt;h3&gt;Informations sur le compte&lt;\/h3&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Pr&eacute;nom :&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;input&#039; name=&#039;firstName&#039; customAttributes=&#039;placeholder=&quot;First Name&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Nom de famille :&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;input&#039; name=&#039;lastName&#039; customAttributes=&#039;placeholder=&quot;Last Name&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Courriel :&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;input&#039; name=&#039;email&#039; customAttributes=&#039;placeholder=&quot;Email Address&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Mot de passe :&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;input&#039; name=&#039;password&#039; customAttributes=&#039;placeholder=&quot;Password&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;T&eacute;l&eacute;phone :&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;input&#039; name=&#039;phone&#039; isRequired=&#039;false&#039; customAttributes=&#039;placeholder=&quot;Phone Number&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Date de naissance :&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;custom&#039; id=&#039;4&#039; isRequired=&#039;false&#039; class=&#039; customAttributes=&#039;placeholder=&quot;Birth Date&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Cliquez ici pour acc&eacute;der au contenu cach&eacute; :&lt;\/label&gt;[MM_Form_Field type=&#039;custom&#039; id=&#039;5&#039; isRequired=&#039;false&#039; class=&#039;&#039;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Moment pr&eacute;f&eacute;r&eacute; de la journ&eacute;e :&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;custom&#039; id=&#039;7&#039; isRequired=&#039;false&#039; class=&#039;&#039;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Des questions ?&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;custom&#039; id=&#039;8&#039; isRequired=&#039;false&#039; class=&#039;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Comment se d&eacute;roule la proc&eacute;dure d&#039;inscription ?&lt;\/label&gt;\n\n[MM_Form_Field type=&#039;custom&#039; id=&#039;9&#039; isRequired=&#039;false&#039; class=&#039;&#039;]&lt;\/p&gt;\n&lt;\/div&gt;\n&lt;p&gt;[\/MM_Form_Section]\n\n[MM_Form_Section type=&#039;billingInfo&#039;]&lt;\/p&gt;\n&lt;div id=&quot;mm-billing-information-section&quot; class=&quot;mm-checkoutInfoBlock&quot;&gt;\n&lt;h3&gt;D&eacute;tails de la facturation&lt;\/h3&gt;\n&lt;p class=&quot;mm-ccLogos&quot;&gt;&lt;img src=&quot;..\/wp-content\/plugins\/membermouse\/resources\/images\/cclogos.gif&quot; width=&quot;199&quot; height=&quot;30&quot; alt=&quot;Visa, Master Card, American Express, Discover&quot;&gt;&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Carte de cr&eacute;dit :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;ccNumber&#039; customAttributes=&#039;placeholder=&quot;Credit Card Number&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Code de s&eacute;curit&eacute; :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;ccSecurityCode&#039; customAttributes=&#039;placeholder=&quot;Security Code&quot;&#039;]&lt;\/p&gt;\n&lt;p id=&quot;mm-checkout-expiration-date&quot; class=&quot;mm-checkout-expiration-date mm-formField&quot;&gt;\n&lt;label&gt;Date d&#039;expiration : &lt;\/label&gt;\n\n[MM_Form_Field name=&#039;ccExpirationDate&#039;]&lt;\/p&gt;\n&lt;p style=&quot;clear:both;&quot;&gt;\n&lt;\/p&gt;&lt;h3 class=&quot;mm-hr&quot;&gt;Adresse de facturation&lt;\/h3&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Adresse :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;billingAddress&#039; customAttributes=&#039;placeholder=&quot;Billing Address&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Ville :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;billingCity&#039; customAttributes=&#039;placeholder=&quot;Billing City&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;&Eacute;tat :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;billingState&#039; customAttributes=&#039;placeholder=&quot;Billing State&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Zip :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;billingZipCode&#039; customAttributes=&#039;placeholder=&quot;Billing Zip Code&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Pays :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;billingCountry&#039;]&lt;\/p&gt;\n&lt;\/div&gt;\n&lt;p&gt;[\/MM_Form_Section]\n\n[MM_Form_Section type=&#039;shippingInfo&#039;]&lt;\/p&gt;\n&lt;div id=&quot;mm-shipping-information-section&quot; class=&quot;mm-checkoutInfoBlock&quot;&gt;\n&lt;h3&gt;Adresse de livraison&lt;\/h3&gt;\n&lt;p id=&quot;mm-shipping-method-block&quot; class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;M&eacute;thode d&#039;exp&eacute;dition :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;shippingMethod&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\nLes frais de port sont les m&ecirc;mes que ceux de la facturation.\n\n[MM_Form_Field name=&#039;shippingSameAsBilling&#039;]&lt;\/p&gt;\n&lt;p&gt;[MM_Form_Subsection type=&#039;shippingAddress&#039;]&lt;\/p&gt;\n&lt;div&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Adresse :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;shippingAddress&#039; customAttributes=&#039;placeholder=&quot;Shipping Address&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Ville :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;shippingCity&#039; customAttributes=&#039;placeholder=&quot;Shipping City&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;&Eacute;tat :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;shippingState&#039; customAttributes=&#039;placeholder=&quot;Shipping State&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Zip :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;shippingZipCode&#039; customAttributes=&#039;placeholder=&quot;Shipping Zip Code&quot;&#039;]&lt;\/p&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n&lt;label&gt;Pays :&lt;\/label&gt;\n\n[MM_Form_Field name=&#039;shippingCountry&#039;]&lt;\/p&gt;\n&lt;\/div&gt;\n&lt;p&gt;[\/MM_Form_Subsection]&lt;\/p&gt;&lt;\/div&gt;\n&lt;p&gt;[\/MM_Form_Section]\n\n[MM_Form_Section type=&#039;coupon&#039;]&lt;\/p&gt;\n&lt;div id=&quot;mm-coupon-block&quot; class=&quot;mm-couponSection mm-checkoutInfoBlock&quot;&gt;\n&lt;h3&gt;Coupons&lt;\/h3&gt;\n&lt;p class=&quot;mm-formField&quot;&gt;\n[MM_Form_Field name=&#039;couponCode&#039;]\n\n&lt;a href=&quot;\/fr\/[MM_Form_Button type=&#039;applyCoupon&#039;]\/&quot; class=&quot;mm-button&quot;&gt;Appliquer le coupon&lt;\/a&gt;&lt;\/p&gt;\n&lt;p&gt;[MM_Form_Message type=&#039;couponSuccess&#039;]\n\n[MM_Form_Message type=&#039;couponError&#039;]&lt;\/p&gt;&lt;\/div&gt;\n&lt;p&gt;[\/MM_Form_Section]&lt;\/p&gt;&lt;\/div&gt;\n&lt;div class=&quot;mm_right_column&quot;&gt;\n&lt;div class=&quot;mm-checkoutSection2&quot;&gt;\n&lt;h2&gt;[MM_Form_Data name=&#039;productName&#039; useAccessName=&#039;false&#039;]&lt;\/h2&gt;\n&lt;p class=&quot;mm-productDesc&quot;&gt;[MM_Form_Data name=&#039;productDescription&#039;]&lt;\/p&gt;\n&lt;ul&gt;\n&lt;li&gt;&lt;span class=&quot;mm-prices&quot;&gt;Prix du produit :&lt;\/span&gt; [MM_Form_Data name=&#039;productPriceDescription&#039;]&lt;\/li&gt;\n&lt;p&gt;[MM_Order_Decision isShippable=&#039;true&#039;]&lt;\/p&gt;\n&lt;li&gt;&lt;span class=&quot;mm-prices&quot;&gt;Prix d&#039;exp&eacute;dition :&lt;\/span&gt; [MM_Form_Data name=&#039;shippingPrice&#039;]&lt;\/li&gt;\n&lt;p&gt;[\/MM_Order_Decision]\n\n[MM_Order_Decision isDiscounted=&#039;true&#039;]&lt;\/p&gt;\n&lt;li&gt;&lt;span class=&quot;mm-prices&quot;&gt;Remise :&lt;\/span&gt; [MM_Form_Data name=&#039;discount&#039;]&lt;\/li&gt;\n&lt;p&gt;[\/MM_Order_Decision]&lt;\/p&gt;\n&lt;li&gt;&lt;span class=&quot;mm-prices&quot;&gt;Prix total :&lt;\/span&gt; [MM_Form_Data name=&#039;totalPrice&#039;]&lt;\/li&gt;\n&lt;\/ul&gt;\n&lt;\/div&gt;\n&lt;div class=&quot;mm-purchaseSection&quot;&gt;\n&lt;div class=&quot;mm-giftsection&quot;&gt;\n[MM_Member_Decision isMember=&#039;true&#039;][MM_Form_Field type=&#039;input&#039; name=&#039;gift&#039;] Est-ce un cadeau ?&lt;p&gt;&lt;\/p&gt;\n&lt;p&gt;[\/MM_Member_Decision]&lt;\/p&gt;&lt;\/div&gt;\n&lt;div class=&quot;mm-paymentbuttons&quot;&gt;\n[MM_Form_Button type=&#039;all&#039; label=&#039;Submit Order&#039; color=&#039;orange&#039;]&lt;\/div&gt;\n&lt;\/div&gt;\n&lt;\/div&gt;\n[\/MM_Form]\n&lt;\/div&gt; <\/code><\/pre>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Voici un exemple de ce que cela pourrait donner sur votre site :<\/strong><\/h5>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/storage.googleapis.com\/wpgcbucket\/wp\/2023\/10\/7d24b461-ovuoxhh_zef4tentae_ivk_upgrntfsvla.png\"><img decoding=\"async\" src=\"https:\/\/storage.googleapis.com\/wpgcbucket\/wp\/2023\/10\/7d24b461-ovuoxhh_zef4tentae_ivk_upgrntfsvla.png\" alt=\"\" class=\"wp-image-11136\"\/><\/a><\/figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>Remarque :&nbsp;<\/em><\/strong><em>The form fields above will look different depending on the theme you&#8217;ve chosen for your site and\/or any CSS additions or changes you have included..<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">N'oubliez pas que l'exemple de code ci-dessus est fourni \u00e0 titre de point de d\u00e9part. Bien qu'il puisse \u00eatre copi\u00e9 et coll\u00e9 directement dans votre \u00e9diteur de pages sous forme de code HTML, les intitul\u00e9s et les identifiants des champs personnalis\u00e9s devront \u00eatre modifi\u00e9s pour correspondre aux noms et aux identifiants de vos champs personnalis\u00e9s sp\u00e9cifiques.  Les identifiants peuvent \u00eatre trouv\u00e9s en passant la souris sur le nom du champ personnalis\u00e9 dans le champ<em>\u00a0Param\u00e8tres de paiement<\/em>\u00a0>\u00a0<em>Champs personnalis\u00e9s<\/em>ou en cliquant sur le bouton \"Show Form SmartTag\u2122\".<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>","protected":false},"excerpt":{"rendered":"<p>MemberMouse vous permet de cr\u00e9er des champs personnalis\u00e9s afin d'associer des donn\u00e9es suppl\u00e9mentaires au compte de chaque membre, ce qui offre une capacit\u00e9 encore plus grande d'autoriser ou de restreindre l'acc\u00e8s \u00e0 l'aide de Member Decision SmartTags\u2122.....<\/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":[138],"ht-kb-tag":[],"class_list":["post-7627","ht_kb","type-ht_kb","status-publish","format-standard","hentry","ht_kb_category-tips-tricks"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 5.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"MemberMouse allows you to create custom fields in order to associate additional data with each member&#039;s account, which allows for an even greater ability to allow or restrict access using Member Decision SmartTags\u2122. Custom fields are identified by the ID assigned to them in MemberMouse. In the following example we&#039;ll show you how the different types of custom\" \/>\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\/fr\/docs\/gather-additional-member-information\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 5.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\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=\"Gather Additional Member Information on your Checkout Page | MemberMouse\" \/>\n\t\t<meta property=\"og:description\" content=\"MemberMouse allows you to create custom fields in order to associate additional data with each member&#039;s account, which allows for an even greater ability to allow or restrict access using Member Decision SmartTags\u2122. Custom fields are identified by the ID assigned to them in MemberMouse. In the following example we&#039;ll show you how the different types of custom\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-08-11T23:07:30+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-08-11T23:07:30+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=\"Gather Additional Member Information on your Checkout Page | MemberMouse\" \/>\n\t\t<meta name=\"twitter:description\" content=\"MemberMouse allows you to create custom fields in order to associate additional data with each member&#039;s account, which allows for an even greater ability to allow or restrict access using Member Decision SmartTags\u2122. Custom fields are identified by the ID assigned to them in MemberMouse. In the following example we&#039;ll show you how the different types of custom\" \/>\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\\\/fr\\\/docs\\\/gather-additional-member-information\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/membermouse.com\\\/fr\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/article-categories\\\/tips\\\/#listItem\",\"name\":\"Tips, Tricks and Customizations\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/article-categories\\\/tips\\\/#listItem\",\"position\":2,\"name\":\"Tips, Tricks and Customizations\",\"item\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/article-categories\\\/tips\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/article-categories\\\/tips-tricks\\\/#listItem\",\"name\":\"Tips and Tricks\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/article-categories\\\/tips-tricks\\\/#listItem\",\"position\":3,\"name\":\"Tips and Tricks\",\"item\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/article-categories\\\/tips-tricks\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/docs\\\/gather-additional-member-information\\\/#listItem\",\"name\":\"Gather Additional Member Information on your Checkout Page\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/article-categories\\\/tips\\\/#listItem\",\"name\":\"Tips, Tricks and Customizations\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/docs\\\/gather-additional-member-information\\\/#listItem\",\"position\":4,\"name\":\"Gather Additional Member Information on your Checkout Page\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/article-categories\\\/tips-tricks\\\/#listItem\",\"name\":\"Tips and Tricks\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/#organization\",\"name\":\"MemberMouse\",\"url\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/\",\"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\\\/fr\\\/author\\\/blaircaseproof-com\\\/#author\",\"url\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/author\\\/blaircaseproof-com\\\/\",\"name\":\"Blair\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/docs\\\/gather-additional-member-information\\\/#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\\\/fr\\\/docs\\\/gather-additional-member-information\\\/#webpage\",\"url\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/docs\\\/gather-additional-member-information\\\/\",\"name\":\"Gather Additional Member Information on your Checkout Page | MemberMouse\",\"description\":\"MemberMouse allows you to create custom fields in order to associate additional data with each member's account, which allows for an even greater ability to allow or restrict access using Member Decision SmartTags\\u2122. Custom fields are identified by the ID assigned to them in MemberMouse. In the following example we'll show you how the different types of custom\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/docs\\\/gather-additional-member-information\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/author\\\/blaircaseproof-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/author\\\/blaircaseproof-com\\\/#author\"},\"datePublished\":\"2023-08-11T16:07:30-04:00\",\"dateModified\":\"2023-08-11T16:07:30-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/\",\"name\":\"MemberMouse\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/membermouse.com\\\/fr\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Gather Additional Member Information on your Checkout Page | MemberMouse<\/title>\n\n","aioseo_head_json":{"title":"Recueillir des informations suppl\u00e9mentaires sur les membres sur votre page de paiement | MemberMouse","description":"MemberMouse vous permet de cr\u00e9er des champs personnalis\u00e9s afin d'associer des donn\u00e9es suppl\u00e9mentaires au compte de chaque membre, ce qui permet d'autoriser ou de restreindre encore plus l'acc\u00e8s \u00e0 l'aide de Member Decision SmartTags\u2122. Les champs personnalis\u00e9s sont identifi\u00e9s par l'identifiant qui leur est attribu\u00e9 dans MemberMouse. Dans l'exemple suivant, nous allons vous montrer comment les diff\u00e9rents types de champs personnalis\u00e9s peuvent \u00eatre utilis\u00e9s.","canonical_url":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/","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\/fr\/docs\/gather-additional-member-information\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr#listItem","position":1,"name":"Home","item":"https:\/\/membermouse.com\/fr","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr\/article-categories\/tips\/#listItem","name":"Tips, Tricks and Customizations"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr\/article-categories\/tips\/#listItem","position":2,"name":"Tips, Tricks and Customizations","item":"https:\/\/membermouse.com\/fr\/article-categories\/tips\/","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr\/article-categories\/tips-tricks\/#listItem","name":"Tips and Tricks"},"previousItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr\/article-categories\/tips-tricks\/#listItem","position":3,"name":"Tips and Tricks","item":"https:\/\/membermouse.com\/fr\/article-categories\/tips-tricks\/","nextItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/#listItem","name":"Gather Additional Member Information on your Checkout Page"},"previousItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr\/article-categories\/tips\/#listItem","name":"Tips, Tricks and Customizations"}},{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/#listItem","position":4,"name":"Gather Additional Member Information on your Checkout Page","previousItem":{"@type":"ListItem","@id":"https:\/\/membermouse.com\/fr\/article-categories\/tips-tricks\/#listItem","name":"Tips and Tricks"}}]},{"@type":"Organization","@id":"https:\/\/membermouse.com\/fr\/#organization","name":"MemberMouse","url":"https:\/\/membermouse.com\/fr\/","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\/fr\/author\/blaircaseproof-com\/#author","url":"https:\/\/membermouse.com\/fr\/author\/blaircaseproof-com\/","name":"Blair","image":{"@type":"ImageObject","@id":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/#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\/fr\/docs\/gather-additional-member-information\/#webpage","url":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/","name":"Gather Additional Member Information on your Checkout Page | MemberMouse","description":"MemberMouse allows you to create custom fields in order to associate additional data with each member's account, which allows for an even greater ability to allow or restrict access using Member Decision SmartTags\u2122. Custom fields are identified by the ID assigned to them in MemberMouse. In the following example we'll show you how the different types of custom","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/membermouse.com\/fr\/#website"},"breadcrumb":{"@id":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/#breadcrumblist"},"author":{"@id":"https:\/\/membermouse.com\/fr\/author\/blaircaseproof-com\/#author"},"creator":{"@id":"https:\/\/membermouse.com\/fr\/author\/blaircaseproof-com\/#author"},"datePublished":"2023-08-11T16:07:30-04:00","dateModified":"2023-08-11T16:07:30-04:00"},{"@type":"WebSite","@id":"https:\/\/membermouse.com\/fr\/#website","url":"https:\/\/membermouse.com\/fr\/","name":"MemberMouse","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/membermouse.com\/fr\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"MemberMouse |","og:type":"article","og:title":"Gather Additional Member Information on your Checkout Page | MemberMouse","og:description":"MemberMouse allows you to create custom fields in order to associate additional data with each member's account, which allows for an even greater ability to allow or restrict access using Member Decision SmartTags\u2122. Custom fields are identified by the ID assigned to them in MemberMouse. In the following example we'll show you how the different types of custom","og:url":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/","article:published_time":"2023-08-11T23:07:30+00:00","article:modified_time":"2023-08-11T23:07:30+00:00","article:publisher":"https:\/\/www.facebook.com\/membermouse","twitter:card":"summary_large_image","twitter:site":"@MemberMouse","twitter:title":"Gather Additional Member Information on your Checkout Page | MemberMouse","twitter:description":"MemberMouse allows you to create custom fields in order to associate additional data with each member's account, which allows for an even greater ability to allow or restrict access using Member Decision SmartTags\u2122. Custom fields are identified by the ID assigned to them in MemberMouse. In the following example we'll show you how the different types of custom","twitter:creator":"@MemberMouse"},"aioseo_meta_data":{"post_id":"7627","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":"","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,"location":null,"local_seo":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"created":"2023-10-11 18:12:44","updated":"2026-06-03 04:05:09","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":"2026-06-02 23:42:52","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/membermouse.com\/fr\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/membermouse.com\/fr\/article-categories\/tips\/\" title=\"Tips, Tricks and Customizations\">Tips, Tricks and Customizations<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/membermouse.com\/fr\/article-categories\/tips-tricks\/\" title=\"Tips and Tricks\">Tips and Tricks<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tGather Additional Member Information on your Checkout Page\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/membermouse.com\/fr"},{"label":"Tips, Tricks and Customizations","link":"https:\/\/membermouse.com\/fr\/article-categories\/tips\/"},{"label":"Tips and Tricks","link":"https:\/\/membermouse.com\/fr\/article-categories\/tips-tricks\/"},{"label":"Gather Additional Member Information on your Checkout Page","link":"https:\/\/membermouse.com\/fr\/docs\/gather-additional-member-information\/"}],"_links":{"self":[{"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/ht-kb\/7627","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/users\/20918"}],"replies":[{"embeddable":true,"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/comments?post=7627"}],"version-history":[{"count":0,"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/ht-kb\/7627\/revisions"}],"wp:attachment":[{"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/media?parent=7627"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/ht-kb-category?post=7627"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/membermouse.com\/fr\/wp-json\/wp\/v2\/ht-kb-tag?post=7627"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}