christopherH-7
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
| Status | Topic | Supporter | Voices | Posts | Freshness |
|---|---|---|---|---|---|
|
display name not showing in user edit screen
Started by: christopherH-7
in: Toolset Professional Support
Problem: I noticed that the “Display Name” field is not showing in the WordPress admin user profile, and I suspect Toolset may be hiding it. Solution: Create a site backup, then go to WordPress Dashboard > Plugins and temporarily deactivate all Toolset plugins. Check if the “Display Name” field reappears in Users > Profile. If it does, Toolset is affecting the display. If not, the issue lies elsewhere. |
|
1 | 2 | 11 months ago | |
|
Datepicket onClose function not working
Started by: christopherH-7
in: Toolset Professional Support
Problem: I want to show Month and Year only on the date picker and on close save only month and year. Solution: Please add the Javascript code below in JS EDITOR section of your form:
jQuery(window).load(function($) {
jQuery('input.form-control.hasDatepicker').each(function() {
jQuery(this).datepicker( "destroy" );
jQuery(this).datepicker({
changeMonth: true,
changeYear: true,
showButtonPanel: true,
dateFormat: 'MM yy',
onClose: function(dateText, inst) {
var month = jQuery("#ui-datepicker-div .ui-datepicker-month :selected").val();
var year = jQuery("#ui-datepicker-div .ui-datepicker-year :selected").val();
jQuery(this).datepicker('setDate', new Date(year, month, 1));
}
});
});
});
|
|
2 | 12 | 4 years, 2 months ago | |
|
Fields not showing in REST API
Started by: christopherH-7 in: Toolset Professional Support |
|
2 | 2 | 4 years, 6 months ago |