Title: Easy Digital Downloads &#8211; Coming Soon
Author: Andrew Munro / AffiliateWP
Published: <strong>Abril 21, 2013</strong>
Last modified: Setyembre 19, 2017

---

Maghanap ng mga plugin

Ang plugin na ito ay **hindi pa nasusubukan sa pinakabagong 3 major release ng WordPress**.
Maaaring hindi na ito minamantine o sinusuportahan at maaaring may mga isyu sa compatibility
kapag ginamit sa mas bagong bersyon ng WordPress.

![](https://s.w.org/plugins/geopattern-icon/edd-coming-soon.svg)

# Easy Digital Downloads – Coming Soon

 Ni [Andrew Munro / AffiliateWP](https://profiles.wordpress.org/sumobi/)

[I-download](https://downloads.wordpress.org/plugin/edd-coming-soon.1.3.3.zip)

 * [Mga Detalye](https://tl.wordpress.org/plugins/edd-coming-soon/#description)
 * [Mga Review](https://tl.wordpress.org/plugins/edd-coming-soon/#reviews)
 *  [Pag-install](https://tl.wordpress.org/plugins/edd-coming-soon/#installation)
 * [Development](https://tl.wordpress.org/plugins/edd-coming-soon/#developers)

 [Suporta](https://wordpress.org/support/plugin/edd-coming-soon/)

## Deskripsyon

This plugin requires [Easy Digital Downloads](https://wordpress.org/plugins/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' );
    ```

## Mga Screenshot

 * [[
 * Easy Digital Download’s download configuration metabox with the new coming soon
   option
 * [[
 * The coming soon text is displayed underneath the price on the admin pricing columns
 * [[
 * The download’s price is removed from the standard download grid, and the coming
   soon text is shown
 * [[
 * The download’s coming soon text is shown after the content on the single download
   page. This can be removed

## Pag-install

 1. Unpack the entire contents of this plugin zip file into your `wp-content/plugins/`
    folder locally
 2. Upload to your site
 3. Navigate to `wp-admin/plugins.php` on your site (your WP Admin plugin page)
 4. Activate this plugin

OR you can just install it with WordPress by going to Plugins >> Add New >> and 
type this plugin’s name

Mark downloads as “Coming Soon” from the download configuration metabox. Optionally
you can enter in custom text

## FAQ

  Installation Instructions

 1. Unpack the entire contents of this plugin zip file into your `wp-content/plugins/`
    folder locally
 2. Upload to your site
 3. Navigate to `wp-admin/plugins.php` on your site (your WP Admin plugin page)
 4. Activate this plugin

OR you can just install it with WordPress by going to Plugins >> Add New >> and 
type this plugin’s name

Mark downloads as “Coming Soon” from the download configuration metabox. Optionally
you can enter in custom text

  I’m not seeing the “Coming Soon” text on my download grid

Some themes may have coded their own custom solution for displaying the downloads.
Try switching to the default WordPress theme to see if you can see the text.

  I’m still seeing a price on my single download page

It depends on how your theme displays the price on your single download page. If
your theme uses the default EDD purchase form then this will be removed fine. However
some themes might have their own function for displaying the price so you’ll need
to edit your theme to remove it. You can use the following condition to wrap blocks
of code that shouldn’t be displayed such as the price:

    ```
    <?php if ( ! edd_coming_soon_is_active() ) : ?>
         // the code you don't want to show when a download is set to coming soon
    <?php endif; ?>
    ```

## Mga Review

![](https://secure.gravatar.com/avatar/da9e373d2c81a469d540f39f9def63cda244b9336461013399d157ed6898766b?
s=60&d=retro&r=g)

### 󠀁[Please Update this plugin](https://wordpress.org/support/topic/please-update-this-plugin-35/)󠁿

 [Arga90](https://profiles.wordpress.org/mekanikekhodro/) Hunyo 13, 2020

hi developers, please update this plugin.

![](https://secure.gravatar.com/avatar/100d63c0fa2df3cd1337a7ba29958513e2f8df650539cb249fdcb054ddf64f14?
s=60&d=retro&r=g)

### 󠀁[Completely Superb](https://wordpress.org/support/topic/completely-superb/)󠁿

 [iSaumya](https://profiles.wordpress.org/isaumya/) Setyembre 3, 2016 1 na reply

Completely Extraordinary Plugin and can be used in many different ways. Just loved
it. Thank you guys for making it. EDD is the best. So much customization unlike 
disgusting woo…. I love EDD and thank you guys for this plugin again….

 [ Basahin lahat ng 4 na review ](https://wordpress.org/support/plugin/edd-coming-soon/reviews/)

## Mga Contributor at Developer

Ang “Easy Digital Downloads – Coming Soon” ay open source software. Ang mga sumusunod
na tao ay nag-ambag sa plugin na ito.

Mga Contributor

 *   [ Andrew Munro / AffiliateWP ](https://profiles.wordpress.org/sumobi/)
 *   [ Easy Digital Downloads ](https://profiles.wordpress.org/easydigitaldownloads/)
 *   [ Scott Kingsley Clark ](https://profiles.wordpress.org/sc0ttkclark/)
 *   [ Julien Liabeuf ](https://profiles.wordpress.org/julien731/)

Ang “Easy Digital Downloads – Coming Soon” ay naisalin na sa 2 (na) mga locale. 
Salamat sa [mga tagasalin](https://translate.wordpress.org/projects/wp-plugins/edd-coming-soon/contributors)
para sa kanilang mga kontribusyon.

[Isalin ang “Easy Digital Downloads – Coming Soon” sa iyong wika.](https://translate.wordpress.org/projects/wp-plugins/edd-coming-soon)

### Interesado sa development?

[Tingnan ang code](https://plugins.trac.wordpress.org/browser/edd-coming-soon/),
i-check ang [SVN repository](https://plugins.svn.wordpress.org/edd-coming-soon/),
o mag-subscribe sa [development log](https://plugins.trac.wordpress.org/log/edd-coming-soon/)
sa pamamagitan ng [RSS](https://plugins.trac.wordpress.org/log/edd-coming-soon/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.3.3

 * New: Added a edd_coming_soon_vote_btn_classes filter hook
 * New: Added activation class to check for the existence of Easy Digital Downloads
   upon activation
 * Tweak: Updated plugin information and readme file
 * Tweak: Allow $custom_text variable to be used with the edd_coming_soon_display_admin_text
   filter hook
 * Tweak: Allow $custom_text variable to be used with the edd_coming_soon_display_text
   filter hook
 * Tweak: The coming soon notice now uses EDD’s native edd_after_download_content
   hook
 * Tweak: Improved singular/plural translations
 * Tweak: Updated .pot translation file
 * Fix: Fixed an instance where the vote count could appear on the front-end of 
   the website

#### 1.3.2

 * Fix: Various PHP notices

#### 1.3.1

 * New: edd_coming_soon_voting_enabled() function to check whether a download has
   voting enabled
 * New: edd_coming_soon_get_votes() function to get the total votes for a download
 * New: French translation, props fxbenard
 * Tweak: Creates the “_edd_coming_soon_votes” meta key on save if voting is enabled
   for a download and it hasn’t received any votes

#### 1.3

 * Fix: Moved the plugin’s options to the “download settings” metabox
 * New: Voting feature. Users can now express their interest in downloads that are
   marked as coming soon.
 * New: Dashboard widget for showing how many votes coming soon downloads have
 * New: [edd_cs_vote] shortcode for allowing a user to vote on a download from any
   page

#### 1.2

 * Fix: Coming soon text not displaying on front-end
 * New: Coming soon text is now shown underneath the price in the admin columns
 * New: Added example filters

#### 1.1

 * Added the ability to set custom text per download, default remains “Coming Soon”.
   Thanks to @sc0ttkclark

#### 1.0

 * Initial release

## Meta

 *  Bersyon **1.3.3**
 *  Huling na-update **9 taon ang nakalipas**
 *  Mga aktibong installation **100+**
 *  Bersyon ng WordPress ** 3.3 o mas bago **
 *  Sinubukan hanggang **4.8.28**
 *  Mga Wika
 * [Danish](https://da.wordpress.org/plugins/edd-coming-soon/), [English (US)](https://wordpress.org/plugins/edd-coming-soon/),
   at [French (France)](https://fr.wordpress.org/plugins/edd-coming-soon/).
 *  [Isalin sa iyong wika](https://translate.wordpress.org/projects/wp-plugins/edd-coming-soon)
 * Mga Tag
 * [coming soon](https://tl.wordpress.org/plugins/tags/coming-soon/)[digital downloads](https://tl.wordpress.org/plugins/tags/digital-downloads/)
   [e-downloads](https://tl.wordpress.org/plugins/tags/e-downloads/)[easy digital downloads](https://tl.wordpress.org/plugins/tags/easy-digital-downloads/)
   [edd](https://tl.wordpress.org/plugins/tags/edd/)
 *  [Advanced View](https://tl.wordpress.org/plugins/edd-coming-soon/advanced/)

## Mga Rating

 4.5 out of 5 stars.

 *  [  3 5-star reviews     ](https://wordpress.org/support/plugin/edd-coming-soon/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/edd-coming-soon/reviews/?filter=4)
 *  [  1 3-star review     ](https://wordpress.org/support/plugin/edd-coming-soon/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/edd-coming-soon/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/edd-coming-soon/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/edd-coming-soon/reviews/#new-post)

[Tingnan lahat ng review](https://wordpress.org/support/plugin/edd-coming-soon/reviews/)

## Mga Contributor

 *   [ Andrew Munro / AffiliateWP ](https://profiles.wordpress.org/sumobi/)
 *   [ Easy Digital Downloads ](https://profiles.wordpress.org/easydigitaldownloads/)
 *   [ Scott Kingsley Clark ](https://profiles.wordpress.org/sc0ttkclark/)
 *   [ Julien Liabeuf ](https://profiles.wordpress.org/julien731/)

## Suporta

May gusto kang sabihin? Kailangan ng tulong?

 [Tingnan ang support forum](https://wordpress.org/support/plugin/edd-coming-soon/)