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)

हे प्लगइन **WordPress च्या शेवटच्या 3 महत्त्वाच्या प्रमुख पुनर्वितरणांच्या साथी 
चाचणी झालेले नाही**. हे येथे वापरल्यास सामर्थ्य देणार नाही किंवा त्या आधारित असु
शकते आणि 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://mr.wordpress.org/plugins/dispatch-countdown/#description)
 * [पुनरावलोकने](https://mr.wordpress.org/plugins/dispatch-countdown/#reviews)
 *  [इंस्टॉलेशन](https://mr.wordpress.org/plugins/dispatch-countdown/#installation)
 * [डेव्हलोपमेंट](https://mr.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

## नेहमी विचारले जाणारे प्रश्न

  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.

 [ सर्व 1 पुनरावलोकन वाचा ](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)
द्वारे सदस्यता घ्या.

## बदलांची यादी

#### 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.

## मेटा

 *  आवृत्ती **1.0.7**
 *  शेवटचा अद्यतन **7 वर्षे पूर्वी**
 *  सक्रिय स्थापना **10+**
 *  वर्डप्रेस आवृत्ती ** 4.0 किंवा मोठा **
 *  परीक्षित केले आहे **5.3.21**
 *  PHP आवृत्ती ** 5.6 किंवा मोठा **
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/dispatch-countdown/)
 * टॅग्ज:
 * [countdown](https://mr.wordpress.org/plugins/tags/countdown/)[dispatch](https://mr.wordpress.org/plugins/tags/dispatch/)
   [woocommerce](https://mr.wordpress.org/plugins/tags/woocommerce/)
 *  [प्रगत दृश्य](https://mr.wordpress.org/plugins/dispatch-countdown/advanced/)

## मूल्यांकन

 5 पैकी ५ तारे.

 *  [  1 5-तारांकित पुनरावलोकन     ](https://wordpress.org/support/plugin/dispatch-countdown/reviews/?filter=5)
 *  [  0 4-तारांकित परीक्षणे     ](https://wordpress.org/support/plugin/dispatch-countdown/reviews/?filter=4)
 *  [  0 3-तारांकित परीक्षणे     ](https://wordpress.org/support/plugin/dispatch-countdown/reviews/?filter=3)
 *  [  0 2-तारांकित परीक्षणे     ](https://wordpress.org/support/plugin/dispatch-countdown/reviews/?filter=2)
 *  [  0 1-तारांकित परीक्षणे     ](https://wordpress.org/support/plugin/dispatch-countdown/reviews/?filter=1)

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

[सर्व पुनरावलोकने पहा](https://wordpress.org/support/plugin/dispatch-countdown/reviews/)

## योगदानकर्ते

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

## समर्थन

काहीतरी सांगायचं आहे का? मदतीची आवश्यकता आहे का?

 [समर्थन फोरम पहा](https://wordpress.org/support/plugin/dispatch-countdown/)