Ati74
Forum Replies Created
-
Forum: Plugins
In reply to: Own Widget doesn´t show after Update 4.3$instance = array(); return $instance;This in the update-Function resolved the Problem
Ati
Forum: Hacks
In reply to: WP-Query doesn´t work with variableThanks for your answer…but this was not the solution.
Anyway there was a logical bug exists, so i do everything new.Forum: Hacks
In reply to: WP-Query doesn´t work with variableIt seems that i found the “error”. The varable $lkw comes from an Input-Field, which is setting by jQuery. There is something stupid. After i select a postal code from a dropdownlist the Value is setting by jQuery (e.g. 502), if i write 502 manually in the input-field everything works fine. Here ist the jquery-code
$('#lieferort').change(function(){ var meinplz = $(this).val(); var data = { action: 'lieferort_plz', plz: meinplz }; $.post(lieferterminajax.ajaxurl, data, function(resp) { //jQuery('input[name="tour"]').val(resp); jQuery('#tournummer').val(resp); });What can i do?
Forum: Fixing WordPress
In reply to: Allow username with dotsI found this discussion too, but i don´t want modify any core-files.
I hoped there is an another solution.Forum: Themes and Templates
In reply to: jQuery Datepicker can't select a dateHi,
here is my update.
@digitalbhavin
Your code changed nothing…sorry@jose Castaneda
The example use the ID-selector, and this works for me.I think we should stop at this point and i use the ID-Selektor, because this works and everything is fine.
Thank you very much for your advises.
Ati74
Forum: Themes and Templates
In reply to: jQuery Datepicker can't select a dateHm i hope i changed the code correctly…but now the datepicker doesn´t pop up. My code looks actaully like this
jQuery(document).ready(function() { jQuery('.datpicker').datepicker({ if (nodeName == 'input') { this._connectDatepicker(target, inst); } else if (inline) { this._inlineDatepicker(target, inst); } monthNames: ['Januar','Februar','Maerz','April','Mai','Juni', 'Juli','August','September','Oktober','November','Dezember'], monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', 'Jul','Aug','Sep','Okt','Nov','Dez'], dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], dateFormat : "dd.mm.yy", firstDay : 1 }); });If i use the ID-Selector everythings works fine
Forum: Themes and Templates
In reply to: jQuery Datepicker can't select a dateHm if i changed jQuery(‘.meindatum’).datepicker to jQuery(‘#meindatum’).datepicker and give the inputfield this Id everything works fine..if i changed back to class i can´t select a date.
Forum: Themes and Templates
In reply to: jQuery Datepicker can't select a dateget_stylesheet_directory_uri()is the same behavior. But what do you mean with console? A special plugin or where can i find the console?
Edit: Google is your friend..sorry for this question. The console says
TypeError: a is undefinedin jquery.ui.datepicker.min.jsForum: Themes and Templates
In reply to: jQuery Datepicker can't select a dateCan anybody help me, or is this maybe the wrong section? Should i place my promlrm in “How-To an Troubleshooting” or an another section?
Ati74