惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
有赞技术团队
有赞技术团队
罗磊的独立博客
博客园 - 叶小钗
Jina AI
Jina AI
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
量子位
MyScale Blog
MyScale Blog
V
Visual Studio Blog
博客园 - 聂微东
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
小众软件
小众软件
宝玉的分享
宝玉的分享

Icarus

Getting Started with Icarus Icarus User Guide - Configuring the Theme FAQ Cyberpunk Theme Variant Upgrade Guide Custom Hexo Tag Helpers 自定义Hexo标签插件 Hexo Built-in Tag Helpers Icarus User Guide - CDN Providers Icarus User Guide - Comment Plugins Icarus User Guide - Other Plugins Icarus User Guide - Share Buttons Icarus User Guide - Search Plugin Icarus User Guide - Web Analytics Plugins Icarus User Guide - Widgets Icarus快速上手 Icarus用户指南 - 主题配置 常见问题 升级指南
Icarus User Guide - Donation Buttons
PPOffice · 2017-01-31 · via Icarus

This article covers donation button configurations supported by Icarus 5. If you need to display multiple donation buttons at once, add individual button configuration to the donates array like the following:

_config.icarus.yml
1
2
3
4
5
6
7
donates:
-
type: ...
...
-
type: ...
...

The following donation buttons are provided by ppoffice/hexo-component-inferno. Please refer to it for a complete list of supported buttons and their configuration details.

Afdian.net

Installation Guide

  1. Register for Afdian.net and copy the URL to your personal page.

  2. Add the following configuration to your theme configurations:

    _config.icarus.yml
    1
    2
    3
    4
    5
    donates:
    -
    type: afdian

    url: /path/to/afdian.net/personal/page

Alipay

Installation Guide

  1. Log into Alipay and export payment QR code.

  2. Save the QR code picture to the asset directory of your Hexo website, or upload it to an image sharing service.

  3. Add the following configuration to your theme configurations:

    _config.icarus.yml
    1
    2
    3
    4
    5
    donates:
    -
    type: alipay

    qrcode: /path/to/alipay/qrcode.png

Buy me a Coffee

Installation Guide

  1. Register for Buy me a Coffee and copy the URL to your personal page.

  2. Add the following configuration to your theme configurations:

    _config.icarus.yml
    1
    2
    3
    4
    5
    donates:
    -
    type: buymeacoffee

    url: /path/to/buymeacoffee/personal/page

Paypal

Installation Guide

  1. Log into Paypal, click here to create a Paypal donation button.

  2. Select “Country/Region” and “Language” in the “Choose button style” page and click “Continue” to advance to the next page.

    Choose Button Style - Paypal
  3. Select “Use account ID” or “Use email address” as the unique identifier of your account in the “Add organization details” page. Then, click “Continue” to go to the next page.

    Add Organization Details - Paypal
  4. Choose the “Currency you’ll receive donations in” and set “Amount donors can give” to “Any amount” in the “Set donation amounts” page. We currently do not support the option of donating in “An exact amount”. Click “Finish and Get Code” to go to the next page.

    Set Donation Amounts - Paypal
  5. Copy business and currency_code from the “Button HTML” on the page. Put them to the business and currency_code settings in your theme configurations.

    Get Code - Paypal

    For example, the following Paypal donation button code:

    Paypal HTML code
    1
    2
    3
    4
    5
    6
    <form action="https://www.paypal.com/cgi-bin/webscr" ...>
    <input type="hidden" name="cmd" value="_donations" />
    <input type="hidden" name="business" value="XXXXXXXXXXXXX" />
    <input type="hidden" name="currency_code" value="USD" />
    ...
    </form>

    maps to the following configuration:

    _config.icarus.yml
    1
    2
    3
    4
    5
    donates:
    -
    type: paypal
    business: XXXXXXXXXXXXX
    currency_code: USD

Patreon

Installation Guide

  1. Register for Patreon and copy the URL to your personal page.

  2. Add the following configuration to your theme configurations:

    _config.icarus.yml
    1
    2
    3
    4
    5
    donate:
    -
    type: patreon

    url: /path/to/patreon/personal/page

WeChat

Installation Guide

  1. Log into WeChat and export payment QR code.

  2. Save the QR code picture to the asset directory of your Hexo website, or upload it to an image sharing service.

  3. Add the following configuration to your theme configurations:

    _config.icarus.yml
    1
    2
    3
    4
    5
    donates:
    -
    type: wechat

    qrcode: /path/to/wechat/qrcode.png

Something wrong with this article? Click here to submit your revision.