FAQ
General Questions
Section titled “General Questions”Can I have different dates for different shipping methods?
Yes. Create multiple date groups and assign different shipping methods to each in the “Display shipping methods” field.
How to set a "within 2 days" date?
Enter 2 in the date field. In the “Delivery date message” field, write e.g. Delivered by {date}.
The module will automatically calculate the date and display e.g. “Delivered by Jan 27.”
How to display a range of days (e.g., "1-2 days")?
Enter 1-2 in the date field. The module will display a date range, e.g. “Jan 26-Jan 27.”
Can I display any text instead of a date?
Yes. Enter any text in the date field (e.g., “Ships within a week”). The text will be displayed instead of the calculated date.
Settings
Section titled “Settings”What is bridging time?
Bridging time determines from when the next day is counted.
Example: You set 2:00 PM. Order at 1:00 PM = delivery in X days. Order at 3:00 PM = delivery in X+1 days.
It is used for situations when you can no longer ship after a certain hour.
How to hide the date for a specific stock status?
Leave the respective field empty or enter a dash -.
Can I override the date for a specific product?
Yes. In the product detail, you will find a “Delivery dates” tab with the option to override values for each group.
How to display dates in a custom location?
Use the shortcode:
[wpify_woo_delivery_dates]Or in a PHP template:
echo do_shortcode( '[wpify_woo_delivery_dates]' );Technical Questions
Section titled “Technical Questions”How to change the date format?
Fill in the “Delivery date format” field in the settings. Standard PHP format is used:
d.m.→ 25.1.d.m.Y→ 25.1.2025j. n.→ 25. 1.l j. n.→ Monday 25. 1.
Can I disable the country selector?
Yes. Use the filter:
add_filter( 'wpify_woo_delivery_dates_disable_country_select', '__return_true' );How to add custom CSS styles?
Target the classes:
.wpify-woo-delivery-date- main container.wpify-woo-delivery-date__line- date row.wpify-woo-delivery-date__line .date- the date itself
.wpify-woo-delivery-date__line .date { color: green; font-weight: bold;}How to change the number of days programmatically?
Use the wpify_woo_delivery_dates_days filter:
add_filter( 'wpify_woo_delivery_dates_days', function( $days, $product, $days_group ) { // Add day for heavy products if ( $product->get_weight() > 30 ) { return is_numeric( $days ) ? $days + 1 : $days; } return $days;}, 10, 3 );Does the module work with product variations?
Yes. Dates are displayed based on the stock status of the currently selected product or variation.