I want to change datepicker icon from its tiny size (calendar.gif) Views and cred
Is there any documentation that you are following?
https://toolset.com/forums/topic/date-calendar-icon-modification/
https://toolset.com/forums/topic/how-can-we-change-the-clear-date-icon-on-the-date-picker-field/
https://toolset.com/forums/topic/in-order-to-change-the-calendar-icon-use-filter-wptoolset_filter_wptoolset_cale/
https://toolset.com/forums/topic/datepicker-css-2/
The odd thing is that I can change the calendar delete icon on cred but not views and the calendar image on cred but not views !!
hidden link
hidden link
thought the functions don't appear to be separate.
<?php
/**
* change defaults icons and X after selection
*/
toolset_snippet_security_check() or die( 'Direct access is not allowed' );
function ii_datepicker_delete_icon(){
$calendar_delete_image = "/wp-content/uploads/2019/03/pencil.png";
return $calendar_delete_image;
}
add_filter('wptoolset_filter_wptoolset_delete_date_image', 'ii_datepicker_delete_icon');
function ii_change_datepicker_icon(){
$calendar_image = '/wp-content/uploads/2019/03/calendar-1.png';
return $calendar_image;
}
add_filter('wptoolset_filter_wptoolset_calendar_image', 'ii_change_datepicker_icon');
</code.
please ignore - there were some paste errors; will open fresh ticket