這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Buy a Brick

描述

This plugin loads an XML file specifying different “bricks” used to make up a fundraising image map and generates a dynamic CSS image map based on the XML file for use as a fundraising meter within pages, posts, and more.

Features:

  • Loads XML file and displays it as a form within the Administrator panel for editing
  • Saves edited XML file
  • Parses XML file to generate dynamic image map, with opaque squares representing “bricks” that are not yet purchased and transparent squares representing “bricks” that have been purchased.
  • Each brick has a hover button popup that directs the user to a donation page, shopping cart, etc.
  • Completely customizable background image, XML file, popup image, and more

For support and further information about the Buy-a-Brick plugin see the plugins homepage at http://www.ghtech.org/tools/plugins.html.
Plugin Official Site
If you have questions about installation or use of this plugin, please visit the official plugin site.

螢幕截圖

  • Plugin settings page

  • XML Editor screen

  • Fundraising image map showing purchased and unpurchased bricks

安裝

  1. Create and upload the sprite image, popup image, and XML file for use with the plugin. See the official plugin site for details on how to do this, especially if you will be linking to Paypal from your image map.

  2. Edit the brickstatic.css file to match your WordPress theme or fundraising page. Replace the existing CSS file in the .zip file with the file you edited.

  3. Install and activate the Buy-a-brick plugin as normal.

  4. Select the Buy-a-Brick Settings under the Options admin menu and fill out the form with the correct information.

  5. Install, activate, and configure exec-PHP or another plugin that allows the execution of PHP code in WordPress posts and pages.

  6. Edit the header.php file for the WordPress theme you are using. Add the following lines somewhere above the </head> tag:

    <link type="text/css" href="” rel=”stylesheet” media=”screen”>

where [PAGE_SLUG] is the slug of the page you wish the image map to appear on. You can also use any of the other conditional tags in WordPress if you want the image map to appear elsewhere in the site (with a specific page template, in a post, etc.). See the official plugin page for more details.

  1. In the page, post, etc. where you want the image map to appear, add the following code:

常見問題

How do I create the image sprite to use in the plugin?

The sprite has two parts: the bottom half should be the image you want to appear when bricks are purchased, with an identical version of the image directly above it with opacity applied to darken it for bricks that are not yet purchased.

What is the format of the XML file?
 <bricks> 

<item id="item-id-1" product_name="message-that-appears-in-popup-1" link_brick="url-that-popup-links-to" width="width-of-this-brick-in-px" height="height-of-this-brick-in-px" top=
upper-bound-of-this-brick-in-px" left="left-location-of-this-brick-in-px" type="2-if-purchased-1-otherwise" raised="total-raised-so-far-first-item-only" />

</bricks>

An example XML file:

<?xml version="1.0" encoding="utf-8"?> 

 <bricks> 

<item id="mc1" product_name="Purchase your Brick now $5000" link_brick="http://www.somesite.org/store/products-page/bricks/bricks4" width="99" height="49" top="0" left="0" type="1" raised="$3.700.00"/>

<item id="mc2" product_name="Mr. Testing Bricks" link_brick="http://www.somesite.org/store/products-page/bricks/bricks4" width="99" height="49" top="0" left="100" type="2" />

<item id="mc3" product_name="Purchase your Brick now $5000" link_brick="http://www.somesite.org/store/products-page/bricks/bricks4" width="99" height="49" top="50" left="0" type="1" /> 

<item id="mc4" product_name="Mrs. Testing Bricks" link_brick="http://www.somesite.org/store/products-page/bricks/bricks4" width="99" height="49" top="0" left="200" type="2" />

</bricks>

評價

There are no reviews for this plugin.

貢獻者及開發者

“Buy a Brick” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 Buy a Brick 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

1.1

  • Revised settings to allow for five fundraising levels and specification of completely different URLs to link to from each level. This is for compatibility with Paypal buttons.

1.0.5

  • Updated plugin to handle Paypal donation or purchase link within image map.

1.0

  • First stable version