浏览代码

Add other donation fields to donate theme / extension

pull/79/head
Benjamin Southall 7 年前
父节点
当前提交
c0d1f60752
共有 2 个文件被更改,包括 10 次插入3 次删除
  1. +3
    -1
      templates/themes/donate/donate.html
  2. +7
    -2
      templates/themes/donate/info.php

+ 3
- 1
templates/themes/donate/donate.html 查看文件

@@ -32,7 +32,9 @@

<p>Cost per month {{ settings.monthlyamount }}</p>

<p>Funds from stickers {{ settings.currentamount }} </p>
<p>Funds from stickers {{ settings.stickeramount }} </p>

<p>Funds from other donations {{ settings.otheramount }} </p>

<div class="container">
<div class="{{ settings.progressbarcssclass }}">


+ 7
- 2
templates/themes/donate/info.php 查看文件

@@ -24,8 +24,13 @@ $theme = array(
'type' => 'text',
'default' => '$55'),
array('title' => 'Current Amount',
'name' => 'currentamount',
array('title' => 'Current Sticker Amount',
'name' => 'stickeramount',
'type' => 'text',
'default' => '$0'),
array('title' => 'Current Other Donations Amount',
'name' => 'otheramount',
'type' => 'text',
'default' => '$0'),


正在加载...
取消
保存