@smit_ralph have you got a URL where this is happening?
Hi,
The matter is not resolved, but I was on a vacation, so could not respond.
The issue is seen in https://www.cooplink.nl/register, if you check the link at bottom of the form (“Privacybeleid”)
@smit_ralph are you adding custom text with the wpum_privacy_text filter or translating the plugin with Loco Translate?
Uhm… Neither? I have not used any additional function to translate, nor is there a translation plugin active. It si just a Dutch WordPress.
Also i did not specifically choose to have this checkbox, I assume it is automatically added to the WPUM registration form when a privacy page is active?
I think there is an issue with the translated string for the Dutch language pack.
To fix this, add a new wpum.php file to your /wp-content/mu-plugins/ directory (you might need to create the mu-plugins directory) with the contents:
<?php
add_filter( 'wpum_privacy_text', function ( $text ) {
return 'Ik heb het <a href="https://www.cooplink.nl/privacy" target="_blank">privacybeleid</a> gelezen en ga akkoord met het opslaan van de gegevens die ik aanlever met dit formulier.';
} );
Thx, that seems to do the trick, although i changed it a bit to
<?php
add_filter( 'wpum_privacy_text', function ( $text ) {
return 'Ik heb het <a href="' . site_url() . '/privacy" target="_blank">privacybeleid</a> gelezen en ga akkoord met het opslaan van de gegevens die ik aanlever met dit formulier.';
} );
Is the language pack part of the plugin, or is that particular string in the WordPress translation files?