Plugin info

Total downloads: 3,019
Active installs: 0
Total reviews: 2
Average rating: 3
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 12/17/2011 (5180 days ago)
Added to WordPress: 5/7/2016 (9 years old)
Minimum WordPress version: 3.0
Tested up to WordPress version: 3.3.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5180 days ago • 2 reviews

22/100

Is Transparent Secured Images abandoned?

Possibly abandoned (last update 5180 days ago).

Compatibility

Requires WordPress: 3.0
Tested up to: 3.3.2
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

This plugin will use jQuery and JavaScript, as well as CSS3, to secure your images a little bit more.

NOTE: It is NOT possible to completely secure your images since all browsers have to get them in order to show them your users, but we do a little approach to secured pictures.

The plugin will replace your image with a transparent image and set your image, you want to show to the user, as background image of the container. When the user now tries to copy the url of the image or the picture itself, he will only get the transparent png file.

Installation

  1. Upload all files to a directory of your choice (it has to be available through your domain)

  2. Copy the following code into your theme header before “” (use the editor of WordPress for this)

$(document).ready(function () { if($.support.cssProperty(‘backgroundSize’)) { $(‘#content img’).each(function() { var temp = $(this); var width = temp.width(); var height = temp.height(); var src = temp.attr(‘src’); var id = temp.attr(‘alt’).replace(/\s/g, ”); temp.wrap(”); $(this).parent().css(‘backgroundImage’, ‘url(“‘ + src + ‘”)’); $(this).parent().css(‘backgroundSize’, ‘100%’); temp.attr(‘src’, ‘[TRANSPARENCY.PNG]’); $(‘div#’ + id + ‘ img’).replaceWith(temp); }); } });

  1. Replace “[TRANSPARENCY.PNG]” in the above code with the url to the transparency.png file

  2. Replace “[ADDON.JS]” in the above code with the url to your addon.js file

  3. Enjoy your secured pictures

Frequently Asked Questions

We do currently have no FAQ!

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.0

  • Initial release
  • Currently we need jQuery to load from google (we search for another option yet)