Data443 Risk Mitigation, Inc.
Forum Replies Created
-
Forum: Plugins
In reply to: [The GDPR Framework By Data443] Users Seeing Other Deleted Users Information.Thank you for bringing this to our attention @sumatanjunior .
Development is correcting this so that even if admin deletes user the logs get removed.
And double checking that user_ids are not reused but always increment to a new id.
In function.php need to add these hooks and need to change the URL accodingly.
Forum: Plugins
In reply to: [The GDPR Framework By Data443] Users Seeing Other Deleted Users Information.When a user is deleted from the GDPR delete button from privacy tool page it also removes the data from “gdpr_userlogs” as well make data anonymized from the wp_user table.
And if an admin deletes the user from WordPress default delete button then gdpr_userlogs will remain there. But then new user which will be created will get next id of the user.
It is helpful if you let me know what process cause this issue. did previous user delete his account or admin perform delete? and from where that user is deleted?
Forum: Plugins
In reply to: [The GDPR Framework By Data443] Parse error: syntax error, unexpectedHi @paulinelephew
Can you please confirm the PHP version also WordPress version?Forum: Plugins
In reply to: [The GDPR Framework By Data443] Change privacy-policy titleHi @wpok,
Please check Overriding templates at URL: https://www.data443.com/wordpress-gdpr-framework-developer-docs/Any more questions you can reach us directly by emailing [email protected] or visiting our ticket portal (see sticky post).
Thank you!
Forum: Plugins
In reply to: [The GDPR Framework By Data443] crash and undefined offset error on install?can you please let us know exact issue you are facing after plugin activation? Also, try after turn off debug mode from wp-config file at the root.
Forum: Plugins
In reply to: [The GDPR Framework By Data443] Users Seeing Other Deleted Users Information.@sumatanjunior we are looking into this – thank you for bringing to our attention.
Forum: Plugins
In reply to: [The GDPR Framework By Data443] crash and undefined offset error on install?Hi @paulinelephew , very sorry to hear this. We have not heard this from any other users lately. The last few releases should be stable. But we have logged an incident ticket and our developer will take a look ASAP.
Forum: Plugins
In reply to: [The GDPR Framework By Data443] Table and JSON export > white screenCan you please confirm woo-commerce version? The WordPress version you are using is not GDPR compliant supported.
Please update woo-commerce to the latest version and then check the same. You can take backup of your woo-commerce plugin then add new woo-commerce plugin then check for the same.
This will work for WooCommerce Version 3.4.0 or later.We spoke with @alainmelsens via our support channel, but wanted to circle back here on the resolution in case others needed it:
add_filter( ‘redirect_after_gdprf_submit’,’modify_fiter’);
function modify_fiter($value){
$ptool_page = get_option(‘gdpr_tools_page’);
if (isset($GLOBALS[“polylang”]))
{ $translations = $GLOBALS[“polylang”]->model->post->get_translations($ptool_page); }
$current_language = pll_current_language();
$default_language = pll_default_language();
$id_ctools = $translations[$current_language];
$modified_URL = get_site_url().’/’.$current_language.’/’.get_post_field( ‘post_name’, $id_ctools ); return $modified_URL;
}
add_filter( ‘privacy_tools_gdprf_page_url’,’modify_fiter_url’);
function modify_fiter_url($value){
$ptool_page = get_option(‘gdpr_tools_page’);
if (isset($GLOBALS[“polylang”]))
{ $translations = $GLOBALS[“polylang”]->model->post->get_translations($ptool_page); }
$current_language = pll_current_language();
$default_language = pll_default_language();
$id_ctools = $translations[$current_language];
$modified_URL = get_site_url().’/’.$current_language.’/’.get_post_field( ‘post_name’, $id_ctools ); return $modified_URL;
}
————————————————————–
Now everything is working as expected, even for the default language.And thanks for the shoutout @alainmelsens :
“Now, you may also confirm that your “The GDPR Framework” WordPress plugin is compatible with Polylang and also works with multilanguage websites. I guess this is very unique at this moment! I have tested many GDPR plugins but in fact, your “The GDPR Framework” is the only one who is GPDR compliant because it’s gives the real WORKING procedures to give the website user what he needs following the real GDPR law rules.
Trully, it’s amazing what you give us to be GDPR compliance. I appreciate it very much.”We appreciate your feedback and comments!
Forum: Plugins
In reply to: [The GDPR Framework By Data443] Acceptable cache plugin?You can check the cache plugin setting and skip privacy tool to get the cache. There are different plugins which provide such options.
We’ve heard from others that “Powered Cache” plugin may not work so well, but that free “Simple Cache” WordPress plugin does.
Forum: Plugins
In reply to: [The GDPR Framework By Data443] “Cookie Policy” tab translationHi @lpsct In the current version, this is not translatable. Next upcoming release we will add this text to be translatable. It has already been coded 🙂
Forum: Plugins
In reply to: [The GDPR Framework By Data443] privacy tools page in 2 languages site@italwebcom development says The code is working but you need to clear website cache that is why it causes this problem. Please let us know if that does not solve the issue by sending us an email at [email protected]. Thank you!
Forum: Plugins
In reply to: [The GDPR Framework By Data443] privacy tools page in 2 languages siteIn function.php need to add these hooks and need to change the URL accodingly.
/** custom page language condition will be add inside this**/
add_filter( ‘redirect_after_gdprf_submit’,’modify_fiter’);
function modify_fiter($value){
if (get_locale() == ‘language_code’) {
return “TOOL_LANG_URL”;
}
}
add_filter( ‘privacy_tools_gdprf_page_url’,’modify_fiter_url’);
function modify_fiter_url($value){
if (get_locale() == ‘language_code’) {
return “TOOL_LANG_URL”;
}
}Forum: Reviews
In reply to: [The GDPR Framework By Data443] Great so farWe will look into adding that, thanks @beehouse !