roelleor
Forum Replies Created
-
Thank you so much for your feature requests and sorry for the late reply. Both features requests are fixed in the new major version. Please take a look at the changelog, for this new release is not 100% backwards compatible as the styling may be affected.
Forum: Plugins
In reply to: [Laposta Signup Basic] Undefined variable $globalErrorClassThanks and sorry for the late reply. As you’re probably aware, this issue has been fixed already.
Forum: Plugins
In reply to: [Laposta Signup Basic] Meerdere lijsten in één formulierBedankt voor je verzoek. Helaas bieden wij deze optie nu niet. Je kunt wel meerdere formulieren tonen op 1 pagina, door meerdere shortcodes onder elkaar te plaatsen. De gebruiker dient zich dan wel voor elke lijst apart in te schrijven. Als deze oplossing niet volstaat is het ook mogelijk om een maatwerk oplossing (te laten) maken middels het gebruik van onze API.
For a complete temporal fix solution (note: this does not fix the field order issue):
add_action( 'wp_enqueue_scripts', ['my_enqueue_scripts'] );
function my_enqueue_scripts() { if (is_checkout()) { wp_enqueue_script('mypostnlfix', '/path/to/postnlfix.js', [], 'my-version', true); } }
and the script I modified a tiny bit from @rawsilk:
jQuery(document).ready(function($) { try { if ($('#billing_country').val() == 'NL') { $("#billing_address_1_field, #billing_address_2_field").hide(); } else $("#billing_address_1_field, #billing_address_2_field").show(); } catch (e) { // pass } });
- This reply was modified 5 years, 11 months ago by roelleor.