內容目錄
前言介紹
- 這款 WordPress 外掛「Easy Digital Downloads – Coming Soon」是 2013-04-20 上架。
- 目前有 200 個安裝啟用數。
- 上一次更新是 2017-09-19,距離現在已有 2784 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 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 '
' . $custom_text . '
';}
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 '
' . $custom_text . '
';}
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 |
延伸相關外掛(你可能也想知道)
Bulk Edit Posts and Products in Spreadsheet 》一個專門為WordPress設計的電子表格。使用電子表格大量編輯文章。, , 它適用於古騰堡(新編輯器)和經典編輯器, 您可以使用古騰堡編輯器直接在電子表格中編輯...。
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 中的「加入購物車」按鈕,當產品免費且只有一個檔案時,替換成直接下載該檔案的連結。此功能僅適用於該檔案為連接...。
Ultimate Store Kit – Elementor powered WooCommerce Builder, 80+ Widgets and Template Builder 》您是否厭倦了因為太多外掛程式而使電子商務網站變慢?使用Ultimate Store Kit外掛程式,您再也不必擔心!, 使用這個外掛程式,您可以在幾分鐘內建立獨特的線...。
WordPress abandoned cart recovery and email marketing for Easy Digital Downloads by Recapture 》主站 | 支援 | 文檔, Recapture 是最簡單、最有效的方式,為您的 Easy Digital Downloads 網站恢復遺失的購物車及進行電子郵件行銷。我們還支援WooCommerce ...。
EDD Hide Download 》此外掛需要Easy Digital Downloads。, 如果您已經建立了自訂的登陸頁面或購買漏斗,可以隱藏 Easy Digital Downloads 產品的默認產品頁面,並將用戶重定向到...。
EDD Sale Price 》透過設定優惠價格,讓您的下載產品更加突出!, 多項研究已經證明,當產品有折扣時,不論是什麼商品,人們都更有可能購買。特別是當他們本來就想要擁有該產品...。
Easy Digital Downloads – Additional Shortcodes 》Easy Digital Downloads 額外短碼外掛為使用 WordPress 建立的電子商務商店增強了有力的條件頁面邏輯。, 如何使用 Easy Digital Downloads 額外短碼, 所有包...。
Easy Digital Downloads – Related Downloads 》這是一個 Easy Digital Downloads 的擴充外掛,能在單一下載頁面的單一下載內容之後自動添加相關的下載。它簡單且輕量,預設情況下不需要任何設置即可運作。...。
Pushover Notifications for WordPress 》透過將 Pushover Notifications 應用程式與您的 WordPress 網誌和這個外掛搭配使用,您可以在行動裝置上的 Push 通知中收到有關您的網誌事件的通知,支援的通...。
Music Player for Easy Digital Downloads 》e Easy Digital Downloads WordPress Plugin:, Music Player for Easy Digital Downloads 是一個 WordPress 外掛,具有以下特色:, , 包含支援 OGA、MP3、WAV...。
EDD Downloads As Services 》這個外掛需要安裝 Easy Digital Downloads 的 1.9 版本或更高版本。, 有許多顧客使用 Easy Digital Downloads 來銷售「服務」而非「下載檔案」。他們反覆要求...。
Counten- Sale Counter Advanced 》使用這個外掛可為您的 Easy Digital Download 產品增加更多功能。透過該外掛,設置促銷並顯示計數器。, Counten- Sale Counter Advanced Plugin for Easy Dig...。
Easy Digital Downloads – Variable Pricing Descriptions 》Easy Digital Downloads - Variable Pricing Descriptions 外掛會為每個可變價格的下載商品增加一個「選項描述」欄位,讓您可以加入更長的描述內容作為選項名...。