pauloL
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [PagHiper Boleto e PIX para WooCommerce] Erro após atualizaçõesEstas atualizações do PHP é complicado, aprendemos de uma forma e agora é de outra.
Segue artigo explicando o “Countable” e como resolver.
Valew!
the Wordfence Security can delete it?
Forum: Plugins
In reply to: [Displet Pop] The popup shows on every pageview and ignore cookiesThis change did not work, someone has another solution for this?
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Check-in and Check-out interaction for min-dateI do not quite understand. You want dates before checkin stay locked?
See this example:
http://jsfiddle.net/LLY3g/Create inputs with id checkin and checkout:
Exemplo contact form 7:
[text date-go id:checkin]
[text date-back id:checkout]Put it in the functions.php file:
add_action('wp_head', 'ativa_data'); function ativa_data(){ ?> <script type="text/javascript"> jQuery(function() { jQuery("#checkin").datepicker({ dateFormat: 'yy/mm/dd', minDate: new Date(), onSelect: function() { jQuery("#checkout").datepicker('option','minDate',jQuery("#checkin").datepicker( "getDate" )); } }); jQuery("#checkout").datepicker({ dateFormat: 'yy/mm/dd', minDate: new Date() }); }); </script> <?php }
Viewing 4 replies - 1 through 4 (of 4 total)