EDD Coming Soon

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:

  1. Adds a checkbox to the download configuration so you can set the download to Coming Soon / Custom Status.
  2. Adds a text field to the download configuration so you can set the text to show (default "Coming Soon").
  3. Adds "Coming Soon" or your custom status text underneath the price on the admin pricing column
  4. 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.
  5. 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
  6. 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 '<h2>' . $custom_text . '</h2>';
}
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 '<h2>' . $custom_text . '</h2>';
}
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' );

Stay up to date

Become a fan on Facebook http://www.facebook.com/sumobicom

Follow me on Twitter http://twitter.com/sumobi_

EDD Download Images

This plugin requires Easy Digital Downloads v2.0 or higher. This plugin allows you to add extra images to your downloads. Use the included shortcode or template tag to display the images on your website. Developers can also use this plugin to get an array of the images and display the images any way.........

Similar: 63%

EDD Free Download Text

This plugin requires Easy Digital Downloads. It adds a new option under Downloads → Settings → Misc where you can change the text that is shown for free downloads. The default is "Free - Purchase" which is not always ideal. Want more free EDD plugins? To fund ongoing development of more.........

Similar: 56%

EDD List File Names

This plugin requires Easy Digital Downloads. Using the included [edd_file_names] shortcode you'll be able to list a download's file names (not file paths). This is useful for showing customers what is included when they purchase your product. The shortcode also takes 2 parameters, title and ID. Usi.........

Similar: 56%

EDD Downloads As Services

This plugin requires Easy Digital Downloads v1.9 or greater. Many customers use Easy Digital Downloads to sell "services" rather than "downloads". We get many requests to remove the "no downloadable files" on the purchase confirmation page, because their services do not have/need files attached. Th.........

Similar: 56%

EDD Purchase Gravatars

This plugin requires Easy Digital Downloads. It outputs gravatars of all the customers who have purchased your product. It works by using the customer's email that they used to purchase your product, and checking it against Gravatar.com. Only unique email addresses are used, so if a customer purcha.........

Similar: 56%

EDD Hide Download

This plugin requires Easy Digital Downloads. It allows you to: Hide a download so it doesn't appear on the custom post type archive page, anywhere where the [downloads] shortcode is being used, or any custom query on a page template Prevent direct access to the download. The browser will redirect.........

Similar: 50%

EDD Prevent Checkout

This plugin requires Easy Digital Downloads. This plugin does one simple thing. It will prevent a customer from being able to checkout until the minimum cart total is reached. More add-ons for Easy Digital Downloads You can find more add-ons (both free and commercial) from Easy Digital Downloads'.........

Similar: 50%

EDD Auto Register

This plugin now requires Easy Digital Downloads v2.3 or greater. View the live demo Once activated, EDD Auto Register will create a WordPress user account for your customer at checkout, without the need for the customer to enter any additional information. This eliminates the need for the default .........

Similar: 46%

EDD Disable Purchase Receipt

This plugin requires Easy Digital Downloads. Sometimes it may be necessary to disable the standard purchase receipt that is sent to the customer. Install and activate this plugin and the purchase receipts will be disabled completely. Looking for the perfect Easy Digital Downloads theme? http://wo.........

Similar: 42%

EDD Favorites

This plugin requires both EDD Wish Lists & Easy Digital Downloads. It will NOT function without them. View Live Demo | View Documentation EDD Favorites is a plugin for EDD Wish Lists that allows your customers to "favorite" downloads. With 1 click (and another click to remove) the download is .........

Similar: 42%