Title: Dispatch Countdown
Author: mrdl
Published: <strong>ಡಿಸೆಂಬರ್ 10, 2019</strong>
Last modified: ಡಿಸೆಂಬರ್ 17, 2019

---

ಪ್ಲಗಿನ್‌ಗಳನ್ನು ಹುಡುಕಿ

![](https://ps.w.org/dispatch-countdown/assets/banner-772x250.png?rev=2209269)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://ps.w.org/dispatch-countdown/assets/icon-256x256.png?rev=2209269)

# Dispatch Countdown

 ‍[mrdl](https://profiles.wordpress.org/mardellme/) ಮೂಲಕ

[ಡೌನ್ಲೋಡ್](https://downloads.wordpress.org/plugin/dispatch-countdown.1.0.7.zip)

 * [ವಿವರಗಳು](https://kn.wordpress.org/plugins/dispatch-countdown/#description)
 * [‍ವಿಮರ್ಶೆಗಳು‍](https://kn.wordpress.org/plugins/dispatch-countdown/#reviews)
 *  [ಸ್ಥಾಪನೆ](https://kn.wordpress.org/plugins/dispatch-countdown/#installation)
 * [ಅಭಿವೃದ್ಧಿ](https://kn.wordpress.org/plugins/dispatch-countdown/#developers)

 [ಬೆಂಬಲ](https://wordpress.org/support/plugin/dispatch-countdown/)

## ವಿವರಣೆ

Specify a time to show (and start) the count down, and an end time to count down
to.

Ideal for displaying a message such as “For same day dispatch, order within 1h 37m”.

## ಸ್ಕ್ರೀನ್‌ಶಾಟ್‌ಗಳು

[⌊Frontend view⌉⌊Frontend view⌉[

Frontend view

[⌊Backend view⌉⌊Backend view⌉[

Backend view

## ಸ್ಥಾಪನೆ

This section describes how to install the plugin and get it working.

 1. Upload the plugin files to the `/wp-content/plugins/dispatch-countdown` directory,
    or install the plugin through the WordPress plugins screen directly.
 2. Activate the plugin through the ‘Plugins’ screen in WordPress
 3. Use the WooCommerce->Settings->Product Settings->Dispatch Countdown screen to configure
    the plugin

## FAQ

  How do I move the countdown?

The countdown must be called at a point where `global $product` is available, so

make sure to call this plugin after WooCommerce has loaded. To move the countdown,
you can remove the action and then add it back wherever you want:

    ```
    /**
     * Move dispatch countdown
     */
    function your_theme_move_dispatch_countdown() {
        // Check the class exists
        if ( ! class_exists( 'Dispatch_Countdown' ) ) {
            return;
        }

        // Get the current instance
        $dispatch_countdown = Dispatch_Countdown::get_public_instance();

        // Remove the action
        remove_action( 'woocommerce_before_single_product', array( $dispatch_countdown, 'display_countdown' ) );

        // Add the action back where you like
        add_action( 'your_theme_before_main_container', array( $dispatch_countdown, 'display_countdown' ) );
    }
    add_action( 'init', 'your_theme_move_dispatch_countdown' );
    ```

Replacing `your_theme_before_main_container` with whichever hook you wish

  How do I change the HTML output?

There are a few filters available to override certain parts of the output. The
 
main filter is `dispatch_countdown_content` and can be used as follows:

    ```
    /**
     * Change countdown HTML output
     *
     * NOTE: You must include an element with the id of dispatch-countdown__time`
    ```

* as javascript uses this to update the countdown.
 */ function your_theme_dispatch_countdown_content(
$html, $wording, $product, $countdown ) { // Add the wording $countdown_html = esc_html(
$wording ); // Add the element for js to update – be sure to include the product
ID as shown $countdown_html .= ‘ ‘; // Add the countdown text $countdown_html .=
esc_html( $countdown ); // Close the countdown element $countdown_html .= ”;

    ```
    return $countdown_html;
    ```

}
 add_filter( ‘dispatch_countdown_content’, ‘your_theme_dispatch_countdown_content’,
10, 4 );`

## ‍ವಿಮರ್ಶೆಗಳು‍

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

### 󠀁[Simple and Effective](https://wordpress.org/support/topic/simple-and-effective-1219/)󠁿

 [kyarauk](https://profiles.wordpress.org/kyarauk/) ನವೆಂಬರ್ 22, 2020

I was a bit doubtful in installing this plugin given it hasn’t got any reviews or
many installations, but I was wrong. I needed something a lightweight way to offer
a dispatch message on my product pages and after testing it locally with no issues,
I added it to my site and so far it has worked as expected. The code supplied to
move the message doesn’t seem to work, but I am happy having it where it is.

 [ Read all 1 review ](https://wordpress.org/support/plugin/dispatch-countdown/reviews/)

## ಕೊಡುಗೆದಾರರು & ಡೆವಲಪರ್‌ಗಳು

“Dispatch Countdown” ಓಪನ್ ಸೋರ್ಸ್ ಸಾಫ್ಟ್‌ವೇರ್ ಆಗಿದೆ. ಕೆಳಗಿನ ಜನರು ಈ ಪ್ಲಗಿನ್‌ಗೆ ಕೊಡುಗೆ
ನೀಡಿದ್ದಾರೆ.

ಕೊಡುಗೆದಾರರು

 *   [ mrdl ](https://profiles.wordpress.org/mardellme/)

[“Dispatch Countdown” ಅನ್ನು ನಿಮ್ಮ ಭಾಷೆಗೆ ಅನುವಾದಿಸಿ.](https://translate.wordpress.org/projects/wp-plugins/dispatch-countdown)

### ಅಭಿವೃದ್ಧಿಯಲ್ಲಿ ಆಸಕ್ತಿ ಇದೆಯೇ?

[ಕೋಡ್ ಬ್ರೌಸ್ ಮಾಡಿ](https://plugins.trac.wordpress.org/browser/dispatch-countdown/),
[SVN ರೆಪೊಸಿಟರಿ](https://plugins.svn.wordpress.org/dispatch-countdown/) ಪರಿಶೀಲಿಸಿ,
ಅಥವಾ [ಅಭಿವೃದ್ಧಿ ಲಾಗ್](https://plugins.trac.wordpress.org/log/dispatch-countdown/)
ಗೆ [RSS](https://plugins.trac.wordpress.org/log/dispatch-countdown/?limit=100&mode=stop_on_copy&format=rss)
ಚಂದಾದಾರರಾಗಿ.

## Changelog

#### 1.0.7

 * Update docs
 * Add POT file for translations
 * Adds filters to main output

#### 1.0.6

 * Allow dispatch countdown hook to be overridden
 * Update documentation with how to move

#### 1.0.5

 * Remove some dist files

#### 1.0.4

 * No changes – deployment tests only

#### 1.0.3

 * No changes – deployment tests only

#### 1.0.2

 * Added icons
 * Added screenshots

#### 1.0.1

 * Updated readme.txt to adhere to WordPress standards

#### 1.0.0

 * Initial release.

## ಮೆಟಾ

 *  Version **1.0.7**
 *  ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಿದ್ದು **7 ವರ್ಷಗಳು ರ ಮುನ್ನ**
 *  ಸಕ್ರಿಯ ಸ್ಥಾಪನೆಗಳು **10+**
 *  ವರ್ಡ್ಪ್ರೆಸ್ ಆವೃತ್ತಿ ** 4.0 ಅಥವಾ ಹೆಚ್ಚಿನದು **
 *  **5.3.21** ವರೆಗೆ ಪರೀಕ್ಷಿಸಲಾಗಿದೆ
 *  PHP ಆವೃತ್ತಿ ** 5.6 ಅಥವಾ ಹೆಚ್ಚಿನದು **
 *  Language
 * [English (US)](https://wordpress.org/plugins/dispatch-countdown/)
 * ಟ್ಯಾಗ್‌ಗಳು
 * [countdown](https://kn.wordpress.org/plugins/tags/countdown/)[dispatch](https://kn.wordpress.org/plugins/tags/dispatch/)
   [woocommerce](https://kn.wordpress.org/plugins/tags/woocommerce/)
 *  [ಸುಧಾರಿತ ನೋಟ](https://kn.wordpress.org/plugins/dispatch-countdown/advanced/)

## ರೇಟಿಂಗ್‌ಗಳು

 5 out of 5 stars.

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

[Your review](https://wordpress.org/support/plugin/dispatch-countdown/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/dispatch-countdown/reviews/)

## ಕೊಡುಗೆದಾರರು

 *   [ mrdl ](https://profiles.wordpress.org/mardellme/)

## ಬೆಂಬಲ

ಹೇಳಲು ಏನಾದರೂ ಸಿಕ್ಕಿದೆಯೇ? ಸಹಾಯ ಬೇಕೇ?

 [ಬೆಂಬಲ ವೇದಿಕೆಯನ್ನು ವೀಕ್ಷಿಸಿ](https://wordpress.org/support/plugin/dispatch-countdown/)