AyeCode / events-for-geodirectory

The Events Calendar for GeoDirectory allows you to create a Directory of GeoEvents. Recurring Events, Events Locator with maps, the Events Calendar widget, sorting events by upcoming are the main features of this add-on for GeoDirectory.
https://wpgeodirectory.com/downloads/events/
Other
2 stars 2 forks source link

Issue with Recuring Events days selection #148

Closed 1naveengiri closed 2 years ago

1naveengiri commented 2 years ago

https://secure.helpscout.net/conversation/1560740934/21536?folderId=3812058

No matter, what we select it always makes Sunday selected.

1naveengiri commented 2 years ago
add_filter( 'geodir_get_cf_value', 'bd_geodir_geodir_get_cf_value', 10, 2 );
function bd_geodir_geodir_get_cf_value( $value, $cf ){
    if( $cf['name'] == 'event_dates' ){
        unset($value['repeat_days'][0]);
    }
    return $value;
}