內容目錄
前言介紹
- 這款 WordPress 外掛「Easy Digital Downloads – Coming Soon」是 2013-04-20 上架。
- 目前有 100 個安裝啟用數。
- 上一次更新是 2017-09-19,距離現在已有 3082 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 3.3 以上版本才可以安裝。
- 有 4 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
sumobi | julien731 | sc0ttkclark | easydigitaldownloads |
外掛標籤
edd | coming soon | e-downloads | digital downloads | easy digital downloads |
內容簡介
此外掛需要 Easy Digital Downloads 外掛。它允許下載文件展示為「即將推出」或自訂狀態文字,並防止添加到購物車。它有以下幾個功能:
新增核取方塊至下載配置,可設置下載為「即將推出 / 自訂狀態」。
新增文字欄位至下載配置,可設置展示的文字(預設為「即將推出」)。
在管理後台的定價欄位下方,展示「即將推出」或自訂狀態文字。
使用 [downloads] 短碼時,以及任何呼叫 edd_price() 函式的地方,展示「即將推出」或自訂狀態文字,替代價格顯示。
防止「即將推出」的下載商品被購買。此外掛會刪除購買按鈕,並透過 edd_action(例如:?edd_action=add_to_cart&download_id=XXX)停止將該下載添加到購物車。
允許客戶對指定的下載進行投票。一個下載的投票結果會顯示在編輯 / 發佈頁面和管理後台。
** 篩選器範例 **
此為如何變更預設「即將推出」文字的篩選器範例。將此函式複製到 functions.php 檔案中:
function edd_coming_soon_modify_default_status_text() {
return 'Not long now!';
}
add_filter( 'edd_cs_coming_soon_text', 'edd_coming_soon_modify_default_status_text' );
此為如何修改管理欄位中「即將推出」文字標記的篩選器範例。將此函式複製到 functions.php 檔案中:
function edd_coming_soon_modify_admin_column_text( $custom_text ) {
return '<h2>' . $custom_text . '</h2>';
}
add_filter( 'edd_coming_soon_display_admin_text', 'edd_coming_soon_modify_admin_column_text' );
此為如何修改前端「即將推出」文字標記的篩選器範例。將此函式複製到 functions.php 檔案中:
function edd_coming_soon_modify_text( $custom_text ) {
return '<h2>' . $custom_text . '</h2>';
}
add_filter( 'edd_coming_soon_display_text', 'edd_coming_soon_modify_text' );
此為如何修改當有人嘗試購買尚未推出的下載時所顯示的訊息範例。
此訊息可透過在 URL 中附加 ?edd_action=add_to_cart&download_id=XXX,將 XXX 替換成您的下載 ID 進行測試。
function edd_coming_soon_modify_prevent_download_message( $download_id ) {
return __( 'This item cannot be purchased just yet, hang tight!', 'edd-coming-soon' );
}
add_filter( 'edd_coming_soon_pre_add_to_cart', 'edd_coming_soon_modify_prevent_download_message' );
原文外掛簡介
This plugin requires Easy Digital Downloads. It allows downloads to be “Coming Soon” or have Custom Status text, and prevents them from being added to the cart. It does a few things:
Adds a checkbox to the download configuration so you can set the download to Coming Soon / Custom Status.
Adds a text field to the download configuration so you can set the text to show (default “Coming Soon”).
Adds “Coming Soon” or your custom status text underneath the price on the admin pricing column
Displays “Coming Soon” or the Custom Status text instead of the price when using the [downloads] shortcode, and anywhere else where the edd_price() function has been called.
Prevents the coming soon download from being purchased. The plugin will remove the purchase button and stop the download from being added to cart via the edd_action. Eg ?edd_action=add_to_cart&download_id=XXX
Allows customers to vote on a specific download. A download’s votes are listed on the edit/publish page and on the admin dashboard
** Filter examples **
Example filter of how you can change the default coming soon text. Copy this function to your functions.php
function edd_coming_soon_modify_default_status_text() {
return 'Not long now!';
}
add_filter( 'edd_cs_coming_soon_text', 'edd_coming_soon_modify_default_status_text' );
Example filter of how you can modify the markup of the coming soon text in the admin columns. Copy this function to your functions.php
function edd_coming_soon_modify_admin_column_text( $custom_text ) {
return '
' . $custom_text . '
';
}
add_filter( 'edd_coming_soon_display_admin_text', 'edd_coming_soon_modify_admin_column_text' );
Example filter of how you can modify the markup of the coming soon text on the front end. Copy this function to your functions.php
function edd_coming_soon_modify_text( $custom_text ) {
return '
' . $custom_text . '
';
}
add_filter( 'edd_coming_soon_display_text', 'edd_coming_soon_modify_text' );
Example filter of how you can modify the message that displays when someone tries to purchase a download that is coming soon.
This message can be tested by appending ?edd_action=add_to_cart&download_id=XXX to your URL, substituting XXX with your download ID
function edd_coming_soon_modify_prevent_download_message( $download_id ) {
return __( 'This item cannot be purchased just yet, hang tight!', 'edd-coming-soon' );
}
add_filter( 'edd_coming_soon_pre_add_to_cart', 'edd_coming_soon_modify_prevent_download_message' );
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Easy Digital Downloads – Coming Soon」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
1.1 | 1.2 | 1.3 | 1.3.1 | 1.3.2 | 1.3.3 | trunk |
延伸相關外掛(你可能也想知道)
Menu Cart for WooCommerce 》** 與 WooCommerce 和 Easy Digital Downloads(EDD)兼容 ** , 此外掛將在導覽列中安裝購物車按鈕。 安裝此外掛的時間少於一分鐘,, 並且包括以下選項:, , ...。
WP Menu Cart 》**與WooCommerce和Easy Digital Downloads(EDD)兼容**, 此外掛會在導覽列中安裝一個購物車按鈕,安裝只需不到一分鐘時間,, 並包括以下選項:, , 顯示購物...。Easy Digital Downloads Featured Downloads 》此外掛需要Easy Digital Downloads。此外掛針對需要顯示精選下載清單的開發人員/用戶設計。, , 提供了一個範本標籤,可精確地將精選下載清單放置於主題中。, ...。
EDD Auto Register 》此外掛現在需要 Easy Digital Downloads 2.9 或更高版本。, 啟用後,EDD Auto Register 可在結帳時為您的顧客建立 WordPress 使用者帳戶,而無需顧客輸入任何...。
Easy Digital Downloads Free Link 》這個外掛程式可將 Easy Digital Downloads 中的「加入購物車」按鈕,當產品免費且只有一個檔案時,替換成直接下載該檔案的連結。此功能僅適用於該檔案為連接...。WP Plugin Info Card 》, 製作及維護:由 Brice CAPOBIANCO 最初開發及維護。, , WPPIC 使用 WP Plugin & Theme APIs,在美麗的盒子中顯示外掛程式和佈景主題的資訊,並帶有平滑...。
Paystack Easy Digital Downloads Payment Gateway 》, 您必須在 Paystack 帳戶的 API Keys & Webhooks 設定頁面中設置 Webhook URL。前往外掛程式設定頁面以獲取更多資訊。, , 這是一個針對 Easy Digital Do...。
Easy Digital Downloads – Related Downloads 》這是一個 Easy Digital Downloads 的擴充外掛,能在單一下載頁面的單一下載內容之後自動添加相關的下載。它簡單且輕量,預設情況下不需要任何設置即可運作。...。
Trust Badges 》**總結:** Trust Badges 是一個 WordPress 外掛,旨在透過在您的電子商務商店上顯示可定制的信任徽章,增加客戶的信任度並提升轉換率。無論您使用 WooCommer...。Counten- Sale Counter Advanced 》使用這個外掛可為您的 Easy Digital Download 產品增加更多功能。透過該外掛,設置促銷並顯示計數器。, Counten- Sale Counter Advanced Plugin for Easy Dig...。
Help Scout integration for Easy Digital Downloads 》Easy Digital Downloads Help Scout 整合是一個 WordPress 外掛,能夠在 Help Scout 儀表板中即時顯示客戶資訊。, 啟用外掛並進行整合設定後,您的 Help Scou...。
EDD Enhanced Sales Reports 》EDD Enhanced Sales Report 外掛可增強您對 Easy Digital Downloads 網路商店的銷售數據洞見。這款免費的外掛將根據產品、下單產品和客戶添加詳細的銷售數據...。EDD Downloads As Services 》這個外掛需要安裝 Easy Digital Downloads 的 1.9 版本或更高版本。, 有許多顧客使用 Easy Digital Downloads 來銷售「服務」而非「下載檔案」。他們反覆要求...。
GDPR Data Manager 》GDPR數據管理器是由Seahorse開發的外掛,可幫助網站和網店擁有者遵守GDPR/CCPA/LGPD提出的最重要的數據合規義務。, 您的WordPress GDPR/CCPA/LGPD合規助手, ...。
Kinguin API for WooCommerce 》這個 WordPress 插件可以將 70,000 個數字產品(包括遊戲、軟體、禮品卡和遊戲內容)匯入到您的網店。, 功能, , 包含 70,000 個數字產品,包括:, ** 多個平...。
