Created
September 24, 2024 12:08
-
-
Save kartikparmar/dc76c35544670ac1f3b4f1d68226096e to your computer and use it in GitHub Desktop.
Change calendar icon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This function will change the calendar icon of the Date selection fields in the front-end booking form. | |
*/ | |
function bkap_calendar_custom_icon_file() { | |
return 'https://www.pngfind.com/pngs/m/681-6816950_small-calendar-icon-png-transparent-png.png'; | |
} | |
add_filter( 'bkap_calendar_icon_file', 'bkap_calendar_custom_icon_file' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment