=== Plugin Name === Contributors: PerS Donate link: http://soderlind.no/donate/ Tags: preview, links, thumbnails, web images, web site, screenshot Requires at least: 3.9 Tested up to: 4.0.1 Stable tag: 1.0.6.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html See a live scaled preview of the site you are linking to prior to clicking on it. == Description == WP Live Preview Links allows you to [see a live scaled preview](http://soderlind.no/wp-live-preview-links/#demo) of the site you are linking to in a pop-up dialog style window prior to clicking on it. WP Live Preview Links does not use an external service to create these "thumbnails". In the admin panel you can select which links that will trigger the preview (`class="wp-live-preview"`, internal, external or all links). You can also adjust the preview window size and position. == Installation == You can download and install WP Live Preview Links using the built in WordPress plugin installer. If you download WP Live Preview Links manually, make sure it is uploaded to "/wp-content/plugins/wp-live-preview-links/". Activate WP Live Preview Links in the "Plugins" admin panel using the "Activate" link. == Frequently Asked Questions == = It doesn't work = 1. WP Live Preview Links needs a modern browsers that support CSS3 3D Transform properties (Chrome, Firefox, Safari, IE10+) 1. Certain sites may have set their X-FRAME-OPTIONS header policy to SAMEORGIN or DENY. This is specifically to prevent other sites from iframing their site. If that is the case, this plugin will not work. == Screenshots == 1. Live preview 2. Admin panel == Changelog == = 1.0.6.1= * Fixed bad path to admin/RevealerCustomFieldType.php = 1.0.6 = * Added the option to use a [jQuery Selector](http://www.w3schools.com/jquery/jquery_ref_selectors.asp) to tell Live Preview Links which links to use. = 1.0.5 = * Upgraded [Admin Page Framework](http://wordpress.org/plugins/admin-page-framework/) to version 3.0.5 * Updated languages/wp-live-preview-links.po = 1.0.4 = * Added mising file = 1.0.3 = * Upgraded [Admin Page Framework](http://wordpress.org/plugins/admin-page-framework/) to version 3 = 1.0.2 = * Minor fixes = 1.0.1 = * Fixed a small bug = 1.0 = * Initial release == Other Notes == = Adding live preview to WordPress search = Activate the plugin and in plugin settings select Live Preview Links = class="wp-live-preview" This is how I've done it [on my site](http://soderlind.no/?s=plugin) running TwentyTwelve. In the (child) theme folder, in functions.php, add the following ` add_action( 'wp_enqueue_scripts', 'ps_live_preview_search_result', 11 ); function ps_live_preview_search_result () { wp_enqueue_script( 'ps_live_preview_search_result_script', get_stylesheet_directory_uri() . '/ps_live_preview_search_result.js', array('wp-live-preview-links'), false, true ); } ` Copy ps_live_preview_search_result.js to the (child) theme folder: ` (function($) { $('.search-results .entry-title a').each(function(index){ $(this).addClass('wp-live-preview'); }); $(window).resize(); })(jQuery); ` = Credits = * WP Live Preview Links uses the [Jquery Live Link Preview Plugin](https://github.com/alanphoon/jquery-live-preview) by [Alan Phoon](http://www.ampedupdesigns.com/about) * The admin panel is done using the excellent [Admin Page Framework](http://wordpress.org/plugins/admin-page-framework/) by [Michael Uno](http://michaeluno.jp/)