Styleguide: Difference between revisions
Content deleted Content added
m Socialmedia template no longer needed |
|||
(26 intermediate revisions by 3 users not shown) | |||
Line 1:
'''Note: some of this documentation needs to be updated'''
==Introduction==
In order to get an better picture of how the templates on donate.wiki relate to one another review the images below. The Landing Page is chopped up into many templates so that we can change and test individual pieces of the page without changing core functional pieces of the page. This provides us with more stability for a broader range of users.
Line 11 ⟶ 13:
==Banner==
Banner settings completely determine which landing page is displayed, in which language, and where the page runs. All banners call the [[Template:Lp-layout-default]] template and pass it the names of 4 templates. The default values follow:
*[[Template:2011FR/Appeal-template-default]]
*"Appeal-default"
Line 19 ⟶ 21:
For specifics of the donate.wiki versions of the banner code visit [[Styleguide/Banner]].
==Appeal Templates==
The "2011FR/'''Appeal-default'''" is used by [[Template:2011FR/Appeal-template-default]] to call the following 2 templates:
*[[Template:2011FR/Appeal-default/text/en]]
*[[Template:2011FR/Appeal-default/title/en]]
==Donation Form Templates==
The template that ties together the payment form on the right of the page is [[Template:2011FR/Form-template-default]]. The country specific details are set by the template [[Template:2011FR/Form-countryspecific-control]].
This is example code from [[Template:2011FR/Form-countryspecific-control/AU]].
<pre>
<html>
</html>
{{2012FR/Form-section/Processing/Default
| language = {{{language}}}
| country = {{{country}}}
| appeal = {{{appeal}}}
| currency = {{
| handler = GC
| GC-CC-ffname = cc-vmaj
}}
{{2012FR/Form-section/Radiobuttons/Default
| country = {{{country}}}
|
| currency = {{
| donate-amount-0 = 5
| donate-amount-1 = 10
Line 120 ⟶ 54:
| donate-amount-6 = 250
}}
{{2012FR/Form-section/Paymentmethods/Creditcard}}
{{2012FR/Form-section/Paymentmethods/EWallet/PayPal}}
{{2012FR/Form-section/Paymentmethods/OnlineBT/BPay}}
{{2012FR/Form-section/Paymentmethods/Banktransfer}}
<html>
</html>
</pre>
==
This template pulls in the payment processing.
Currently, there are the following credit card combinations available:
*cc-vm - Visa, Master Card
*cc-vma - Visa, Master Card, JCB
*cc-vmj - Visa, Master Card, American Express
*cc-vmaj - Visa, Master Card, American Express, JCB
===Donation Amounts===
[[Template:2012FR/Form-section/Radiobuttons/Default]]
This template pulls in the display method for the donation options and sets the values to be displayed. The "donate-amount-*" perimeters set the values that will be used in the country. These values are in the currency that has been set as the local currency.
===Payment Methods===
There is a list of all the payment methods that can be added to a country at [[Template:2012FR/Form-section/Paymentmethods]].
==Helper Templates==
===Currency templates===
The following 2 templates contain the information needed to get currency details.
*[[Template:
*[[Template:
*[[Template:
*[[Template:
===Switch templates===
Line 143 ⟶ 97:
===Payment method templates===
There is a list of all the payment methods that can be added to a country at [[Template:2012FR/Form-section/Paymentmethods]].
===Misc. Templates===
*[[Template:Numstaff]] - Controls the # we display for our staff count.
==F.A.Q.==
Line 172 ⟶ 107:
These three templates add all the needed details for each currency.
*
*
*
This template enables the currencies by linking them to countries
*
===How do I add countries?===
Line 195 ⟶ 130:
===How do I customize Landing Pages for a country?===
To customize the donation forms for each country changes need to be made to the corresponding "Form-countryspecific-*" and "Form-template-*" templates.
===How do I add new payment methods?===
To add new payment methods 1 template needs to be edited and 1 new template must be created.
The template that must be edited is [[Template:2012FR/Form-section/Processing/Default]] and a new "Form-section/Paymentmethod/*" template must be made.
===How do I enable or disable payment methods?===
Each payment method has a master switch that can disable all processing of that type. The switch is located in the template [[Template:2012FR/Form-section/Paymentmethods/Status]]. By going to this template and changing the CSS property "display" to either "block" or "none", one can enable or disable payment methods respectively.
Enabling and disabling payment methods for individual countries can be done by adding and removing the payment method templates listed above from the "Form-countryspecific-*" template.
==Tools==
===Scripts===
[[Styleguide/Scripts]]
|