Version Description
= 0.1 = Starter version no upgrade is required.
Download this release
Release Info
Developer | weblizar |
Plugin | Pinterest Pin It Button On Image Hover And Post |
Version | 2.6.6 |
Comparing to | |
See all releases |
Code changes from version 2.6.5 to 2.6.6
- pinterest-pin-It-button.php +13 -12
- readme.txt +17 -25
pinterest-pin-It-button.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Pinterest Pin It Button On Image Hover And After Post & Page Content
|
4 |
-
* Version: 2.6.
|
5 |
* Description: Pinterest pin it button on image hover plugin provides facility to pins your blog posts, pages and images into your Pinterest account boards.
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://weblizar.com/plugins/
|
@@ -74,18 +74,19 @@ function wl_pinit_js() {
|
|
74 |
|
75 |
// exclude images pin it hover
|
76 |
$imags_urls = array();
|
77 |
-
$imags_urls = get_option( 'exclude_pin_it_images', array() );
|
78 |
-
?>
|
79 |
<script>
|
80 |
-
<?php if((is_array($imags_urls)) && count($imags_urls)) {
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
jQuery(
|
86 |
-
|
87 |
-
|
88 |
-
|
|
|
|
|
89 |
<?php } } } ?>
|
90 |
</script>
|
91 |
<?php
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Pinterest Pin It Button On Image Hover And After Post & Page Content
|
4 |
+
* Version: 2.6.6
|
5 |
* Description: Pinterest pin it button on image hover plugin provides facility to pins your blog posts, pages and images into your Pinterest account boards.
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://weblizar.com/plugins/
|
74 |
|
75 |
// exclude images pin it hover
|
76 |
$imags_urls = array();
|
77 |
+
$imags_urls = get_option( 'exclude_pin_it_images', array() ); ?>
|
|
|
78 |
<script>
|
79 |
+
<?php if((is_array($imags_urls)) && count($imags_urls)) {
|
80 |
+
foreach($imags_urls as $imags_url) {
|
81 |
+
if($imags_url) { ?>
|
82 |
+
jQuery(document).ready(function(){
|
83 |
+
var nopin_img_src = "<?php echo $imags_url; ?>";
|
84 |
+
jQuery("img").each(function(){
|
85 |
+
if(jQuery(this).attr("src") == nopin_img_src){
|
86 |
+
jQuery(this).attr("nopin", "nopin");
|
87 |
+
}
|
88 |
+
});
|
89 |
+
});
|
90 |
<?php } } } ?>
|
91 |
</script>
|
92 |
<?php
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Contributors: weblizar
|
|
5 |
Donate link: https://www.weblizar.com/
|
6 |
Tags: pinterest, pin images, pin photo, pin it button, pin plugin
|
7 |
Requires at least: 3.8
|
8 |
-
Tested up to:
|
9 |
Stable tag: 2.6.5
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -30,41 +30,29 @@ Pinterest pin it button on image hover plugin provides facility to pins your blo
|
|
30 |
|
31 |
### Pinterest Feed Pro Features
|
32 |
|
33 |
-
* Pinterest Profile
|
34 |
-
Show your Pinterest profile as it looks on Pinterest platform
|
35 |
|
36 |
-
* Pinterest Pins
|
37 |
-
Share all your Pinterest pins on your website
|
38 |
|
39 |
-
* Get All relevant outputs of your Pinterest profile, Pins
|
40 |
-
Showcase your Pinterest gallery in the most efficient way to gather more traffic.
|
41 |
|
42 |
-
* Shortcode and widgets section for your Pinterest profile, Pins
|
43 |
-
Many shortcodes and widget options to choose where to display your Pinterest feed.
|
44 |
|
45 |
-
* Pinterest profile with stat box of total boards, Pins, Following, Followers, Likes and Follow button
|
46 |
-
Decide which stats you want to show to your users with beautiful templates.
|
47 |
|
48 |
-
* Get All Pinterest Pins of single and multiple boards
|
49 |
-
Choose how you want to display your pins and boards.
|
50 |
|
51 |
-
* Responsive dashboard design with Live preview
|
52 |
-
Tested with multiple devices and screen sizes by our team of dedicated web developers
|
53 |
|
54 |
-
* Easy to use user friendly interface
|
55 |
-
Easy options to configure Pinterest feed
|
56 |
|
57 |
-
* User friendly descriptive section designing with helpful tool tips
|
58 |
-
Stuck somewhere? Our special tool tips will help you along the way
|
59 |
|
60 |
-
* Multi Site Support
|
61 |
-
Plugin support on WordPress multi sites functionality
|
62 |
|
63 |
-
* Bootstrap Based Responsive Plugin Settings Panel
|
64 |
-
It is compatible with all the latest and top most WordPress websites available.
|
65 |
|
66 |
-
* Multilingual & Translation Ready
|
67 |
-
So that none of our user face difficulty in using our plugin.
|
68 |
|
69 |
#### Check Pinterest Feed Pro Live In Action
|
70 |
|
@@ -123,6 +111,10 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/pintere
|
|
123 |
|
124 |
For more information, see [Weblizar](https://wwww.weblizar.com/).
|
125 |
|
|
|
|
|
|
|
|
|
126 |
= Version 2.6.5 =
|
127 |
- Update setting of pinit button for mobile device
|
128 |
- Update product page
|
5 |
Donate link: https://www.weblizar.com/
|
6 |
Tags: pinterest, pin images, pin photo, pin it button, pin plugin
|
7 |
Requires at least: 3.8
|
8 |
+
Tested up to: 5.0.1
|
9 |
Stable tag: 2.6.5
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
30 |
|
31 |
### Pinterest Feed Pro Features
|
32 |
|
33 |
+
* **Pinterest Profile** - Show your Pinterest profile as it looks on Pinterest platform.
|
|
|
34 |
|
35 |
+
* **Pinterest Pins** - Share all your Pinterest pins on your website.
|
|
|
36 |
|
37 |
+
* **Get All relevant outputs of your Pinterest profile, Pins** - Showcase your Pinterest gallery in the most efficient way to gather more traffic.
|
|
|
38 |
|
39 |
+
* **Shortcode and widgets section for your Pinterest profile, Pins** - Many shortcodes and widget options to choose where to display your Pinterest feed.
|
|
|
40 |
|
41 |
+
* **Pinterest profile with stat box of total boards, Pins, Following, Followers, Likes and Follow button** - Decide which stats you want to show to your users with beautiful templates.
|
|
|
42 |
|
43 |
+
* **Get All Pinterest Pins of single and multiple boards** - Choose how you want to display your pins and boards.
|
|
|
44 |
|
45 |
+
* **Responsive dashboard design with Live preview** - Tested with multiple devices and screen sizes by our team of dedicated web developers.
|
|
|
46 |
|
47 |
+
* **Easy to use user friendly interface** - Easy options to configure Pinterest feed
|
|
|
48 |
|
49 |
+
* **User friendly descriptive section designing with helpful tool tips** - Stuck somewhere? Our special tool tips will help you along the way.
|
|
|
50 |
|
51 |
+
* **Multi Site Support** - Plugin support on WordPress multi sites functionality.
|
|
|
52 |
|
53 |
+
* **Bootstrap Based Responsive Plugin Settings Panel** - It is compatible with all the latest and top most WordPress websites available.
|
|
|
54 |
|
55 |
+
* **Multilingual & Translation Ready** - So that none of our user face difficulty in using our plugin.
|
|
|
56 |
|
57 |
#### Check Pinterest Feed Pro Live In Action
|
58 |
|
111 |
|
112 |
For more information, see [Weblizar](https://wwww.weblizar.com/).
|
113 |
|
114 |
+
= Version 2.6.6 =
|
115 |
+
- Tested with wordpress 5.0.1
|
116 |
+
- Readme text update.
|
117 |
+
|
118 |
= Version 2.6.5 =
|
119 |
- Update setting of pinit button for mobile device
|
120 |
- Update product page
|