Built With Elementor Page Builder Anything Is Possible!

Uploader

Uploader information

You can edit this upload widget with your own AWS keys you will need to create a new user with this policy. Make sure you change your bucket name.

You will also need to make sure you bucket has uploader cors added this can be done through the S3Bubble dashboard under s3 bucket click the actions menu on your bucket and add the uploader cors.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetBucketLocation",
                "s3:ListAllMyBuckets"
            ],
            "Resource": "arn:aws:s3:::*"
        },
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetObject",
                "s3:PutObject",
                "s3:GetObjectAcl",
                "s3:PutObjectAcl",
                "s3:ListBucket",
                "s3:GetBucketAcl",
                "s3:PutBucketAcl",
                "s3:GetBucketLocation"
            ],
            "Resource": [
                "arn:aws:s3:::{enter s3 bucket}",
                "arn:aws:s3:::{enter s3 bucket}/*"
            ]
        }
    ]
}