The most important piece of information to pass to a checkout page is what the customer is purchasing so that the form can be appropriately configured, but sometimes you may want to pass additional data that you want associated with the customer’s order. MemberMouse supports passing Partner-Informationen, a Kuponcode, Geschenk-Indikator, Kundendaten und benutzerdefinierte Felddaten.
Informationen für Partner
MemberMouse’s affiliate tracking system integrates seamlessly with checkout pages. It provides a powerful way to track incoming traffic to your site from multiple sources. One of the advantages of MemberMouse’s integrated tracking is that you can send traffic to any page on the site at the same time. For example, if you’re sending an affiliate email you can include tracking links to your landing page, blog, sales page, and more in a single email.
Dieser Artikel zeigt Ihnen, wie Sie Affiliate-Links erstellen.
Kupon-Code
Sometimes it may be useful to pass a default coupon code to the checkout page. Maybe you’ve sent out an email with a limited time offer to your members and you want the discount to be applied as soon as they hit the checkout page or maybe you’ve created a banner ad for an affiliate partner and you want to offer their members a discount to get them to sign up. For both cases, you can simply pass the coupon to the checkout page by using the keyword ‘coupon’.
Say you have a coupon code ‘WINTERSALE12’ set up. To apply it automatically to your checkout page, just use the following format:
http://yourdomain.com/checkout/?coupon=WINTERSALE12
oder wenn sie am Ende einer Produkt-ID steht:
http://yourdomain.com/checkout/?rid=p2w15K&coupon=WINTERSALE12
When a customer clicks on this link they’ll be taken to the checkout page and the WINTERSALE12 coupon will automatically be applied to their order.
Geschenk-Indikator
You may want to indicate that the product being purchased is as a gift. In this cases, you can simply indicate this by using the keyword ‘gift’ and setting the value to ‘yes’:
http://yourdomain.com/checkout/?gift=yes
oder wenn sie am Ende einer Produkt-ID steht:
http://yourdomain.com/checkout/?rid=p2w15K&gift=yes
When a customer clicks on this link they’ll be taken to the checkout page and as long as the gift check box is present on the form (MM_Form_Field type=’input’ name=’gift’), it will automatically be checked.
Daten der Kunden
There may be a case where you want to pass certain pieces of customer data to the checkout page so that it gets pre-populated in the form. Maybe you collected this data somewhere else and as a convenience you pass it to the form to be pre-populated so the customer doesn’t have to enter it again.
MemberMouse unterstützt die Übergabe von Kundendaten an die Kassenseite sowohl über GET- als auch POST-Methoden. Für jeden Parameter, den Sie übergeben möchten, fügen Sie ihn der URL der Kassenseite im folgenden Format hinzu:
parameter_name=wert
Where ‘parameter_name’ is the name of one of the supported parameters and ‘value’ is the default value to want to use for that parameter.
Nachstehend finden Sie eine Liste der unterstützten Kundendatenparameter:
vor_name– customer’s first nameletzter_name– customer’s last nameE-Mail– customer’s email addressTelefon– customer’s phone numberrechnungs_adresse– customer’s billing addressabrechnung_stadt– customer’s billing cityrechnungs_Staat– customer’s billing staterechnungsstellung_zip– customer’s billing zip codeabrechnungs_land– customer’s billing countryshipping_address– customer’s shipping addressVersand_Stadt– customer’s shipping cityversand_staat– customer’s shipping stateversand_zip– customer’s shipping zip codeshipping_country– customer’s shipping country
Benutzerdefinierte Felddaten
Mit MemberMouse können Sie Benutzerdefinierte Felder erstellen in order to associate additional data with each member’s account. Maybe you’re running a membership site related to fitness and you want to know a member’s current and target weight. Maybe you want to store marketing data related to Google AdWords campaigns.
Whatever it is you want to collect in addition to MemberMouse’s default member data you can do so by using custom fields. If you’ve benutzerdefinierte Felder in Ihre Kassenseite aufnehmen können Sie diese Felder vorausfüllen, indem Sie die URL der Checkout-Seite im folgenden Format aufrufen:
http://yourdomain.com/checkout/?cf_1=banner-20&cf_2=membership
In this example, we’re passing two parameters to the checkout page: ‘cf_1’ and ‘cf_2’ with the values of ‘banner-20’ and ‘membership’, respectively.
Custom fields are identified by the ID assigned to them in MemberMouse. In the above example, we’re pre-populating the custom fields with IDs 1 and 2. If we want to pre-populate the custom field associated with ID 16 we would call the checkout page URL as follows:
http://yourdomain.com/checkout/?cf_16=male

