christopherH-7
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
| Status | Debate | Supporter | Voces | Mensajes | Caducidad |
|---|---|---|---|---|---|
|
display name not showing in user edit screen
Iniciado por: christopherH-7
en: 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 | 12 months ago | |
|
Datepicket onClose function not working
Iniciado por: christopherH-7
en: 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, 3 months ago | |
|
Fields not showing in REST API
Iniciado por: christopherH-7 en: Toolset Professional Support |
|
2 | 2 | 4 years, 7 months ago |