Reply To: SyncS3 Support?
November 30, 2020 at 10:38 pm Reply
Support Manager
Hi Kris,
Yes, you can remove the presigning of URLs. Here is a code snippet you can use:
add_filter( 'syncs3_create_s3_request_args', 'my_syncs3_create_s3_request_args' ); function my_syncs3_create_s3_request_args( $args ) { $args['presigned'] = false; return $args; }