GDPR compliance of GD and all addons

This topic contains 16 replies, has 2 voices, and was last updated by  Stiofan O’Connor 5 years, 11 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #433737

    Dirk
    Full Member
    Post count: 390
    This reply has been marked as private.
    #433764

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    IP address has been added to post export.
    Claim name has been adjusted.

    You can already disable post export per CPT with the below hook
    Per CPT:

    
    
    add_filter( 'geodir_privacy_allow_export_post_type_data', '_my_disable_gdpr_export',10,2 );
    function _my_disable_gdpr_export($allow, $post_type){
        if($post_type == 'gd_place'){
            $allow = false;
        }
        return $allow;
    }

    ALL:

    add_filter( 'geodir_privacy_allow_export_post_type_data', '__return_false');

    Stiofan

Viewing 2 posts - 16 through 17 (of 17 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket