开发者 | shanebp |
---|---|
更新时间 | 2024年5月23日 23:04 |
捐献地址: | 去捐款 |
PHP版本: | 7.2 及以上 |
WordPress版本: | 6.4 |
版权: | GPLv2 or later |
= Do I need a Google Maps API Key? Yes, if you select to use that option. If you need help, read this tutorial Google Maps API Key This is due to a difference between English and European preference re date format. The fix is simple. Open this file in a text editor: bp-simple-events-pro/inc/js/events.js Find: dateFormat: 'DD, MM d, yy' For Europe, change it to: dateFormat: 'dd-mm-yy' Or whatever you prefer You will then need to :
No.
Yes - if the Calendar supports assigning custom post types
Yes, by using the filter hook.
Place this function in your theme > functions.php
function pp_events_category_filter( $args ) { $args = array( "child_of" => -1 ); return $args; } add_filter( "event_cat_args_filter", "pp_events_category_filter", 1, 1 );