christopherH-7
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
| Status | Topic | Supporter | Voix | Publications | Nouveauté |
|---|---|---|---|---|---|
|
display name not showing in user edit screen
Commencé par : 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 | Il y a 12 months | |
|
Datepicket onClose function not working
Commencé par : 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 | Il y a 4 years, 3 months | |
|
Fields not showing in REST API
Commencé par : christopherH-7 in: Toolset Professional Support |
|
2 | 2 | Il y a 4 years, 7 months |