• Plugin Author imaguard

    (@imaguard)


    We have released the version 1.3 today. It adds several new features requested by users:

    Added optional credit line to watermark. Remove by unchecking in settings
    Amended deactivation tag to better remove htaccess footprint when deactivated
    Added option to set redirect type 301 or 302
    Added option to set font size
    Added option to set vertical text position
    Added option to set degree of darkness to add to images in aggressive mode
    Added onward forward to image post instead of image preview page (note: this is still in beta mode)

    It also fixes a few known bugs:

    Fixed problem with tickbox jQuery CSS popup on some browsers (endless loading problem)
    Fixed 500 error issue with certain characters on user agent list

    Please let us know of any issues during upgrade or when using the new version.

    https://www.ads-software.com/extend/plugins/imaguard/

Viewing 2 replies - 16 through 17 (of 17 total)
  • Thanks for this plugin and really appreciate your hard work! I’m still using 1.3 and find it offers clever and ingenious options to guide visitors back to your blog from image search.

    Have one question (excuse my ignorance if this is really dumb) but was wondering if it would be possible to disable right-click (as an option) in the non-aggressive version when a person sees the full-size image in the floating window?

    Have written a blog post about how I’m using the non-aggressive version which I hope will help spread the word and assist others – https://blog.wildlife-pictures-online.com/photography/imaguard-plugin-guides-searchers-to-your-blog/.

    Plugin Author imaguard

    (@imaguard)

    Thanks for your kind words!

    The easiest way of preventing right clicking, would probably be for you to insert this

    oncontextmenu="return false"

    in your theme’s body tag (often found in themes/yourtheme/header.php.

    so instead of <body> you will get <body oncontextmenu=”return false”>

    Then you may also want to add a JS somewhere like

    <script language="javascript">
        document.onmousedown=disableclick;
        status="Right click has been disabled for this page";
        Function disableclick(e)
        {
          if(event.button==2)
           {
             alert(status);
             return false;
           }
        }
        </script>

    Neither of these solutions will give you protection against someone who really want to download your images, though, but perhaps make it a bit harder for just a random visitor to store the image.

    Hope it helps. If you have any problems implementing just let me know.

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Version 1.3 released’ is closed to new replies.