// All code below can go in your theme - function.php - file. == Date picker in English == /* * If you want the date picker in another language then English or French (default) * see enqueue_date_picker() function in byad-settings.php */ function my_date_picker_lg($params){ //Change language code to localize the datepicker $params['byadRegional'] = 'en'; //you can also change the datepicker icon //$params['byadIcon'] = 'http://absolute-custom-path/my-futur-death-calendar.png@'; return $params; } add_filter('byad_date_data','my_date_picker_lg'); == Custom CSS file == /* * custom css for byad-countdown plugin */ function my_own_css () { wp_register_style( 'custom_plugin_css', get_bloginfo('stylesheet_directory') . '/my-custom-css.css' ); wp_enqueue_style( 'custom_plugin_css' ); } add_action('byad_stylesheet', 'my_own_css');