Pinterest Pin It Button On Image Hover And Post - Version 2.7.0

Version Description

= 0.1 = Starter version no upgrade is required.

Download this release

Release Info

Developer weblizar
Plugin Icon 128x128 Pinterest Pin It Button On Image Hover And Post
Version 2.7.0
Comparing to
See all releases

Code changes from version 2.6.9 to 2.7.0

css/recom.css CHANGED
@@ -2684,10 +2684,8 @@ li.active a, li.active a:hover
2684
  {
2685
  clear: both;
2686
  padding: 8px 20px;
2687
- background-color: #fafafa;
2688
  overflow: hidden;
2689
  text-align:right;
2690
- border-top: 1px solid #dedede
2691
  }
2692
  .plugin-icon-custom
2693
  {
2684
  {
2685
  clear: both;
2686
  padding: 8px 20px;
 
2687
  overflow: hidden;
2688
  text-align:right;
 
2689
  }
2690
  .plugin-icon-custom
2691
  {
css/weblizar-smartech.css CHANGED
@@ -1556,7 +1556,15 @@ display: block;
1556
  font-size:15px;
1557
  margin-top: 10px;
1558
  font-size: 20px;
1559
- color: #fff;
 
 
 
 
 
 
 
 
1560
  }
1561
 
1562
  .img-wrapper{
1556
  font-size:15px;
1557
  margin-top: 10px;
1558
  font-size: 20px;
1559
+ color: #fff;
1560
+ }
1561
+
1562
+ .column-updated span, .column-compatibility span, span.num-ratings{ color: #000; }
1563
+ .column-rating { float: left;}
1564
+ .plugin-card-bottom_settings{
1565
+ background-color: none;
1566
+ border-top: 0px solid #ddd;
1567
+
1568
  }
1569
 
1570
  .img-wrapper{
exclude-images.php CHANGED
@@ -9,58 +9,58 @@
9
  </div>
10
  <hr>
11
  <div>
12
- <?php
13
- $all_exclude_images = NULL;
14
- $all_exclude_images = get_option('exclude_pin_it_images');
15
- //print_r($all_exclude_images);
16
-
17
- ?>
18
- <table class="table">
19
- <thead class="thead-dark">
20
- <tr>
21
- <th scope="col">#</th>
22
- <th scope="col">URL</th>
23
- <th scope="col" class="text-center"><input type="checkbox" id="select-all" name="select-all[]" value="-1" /></th>
24
- </tr>
25
- </thead>
26
- <tbody>
27
  <?php
28
- //if($all_exclude_images != ''){
29
- if(is_array($all_exclude_images) && count($all_exclude_images)) {
30
- $count = 1;
31
- foreach($all_exclude_images as $exclude_key => $exclude_image) {
32
- if($exclude_image) {
33
- ?>
34
- <tr id="<?php echo $exclude_key; ?>">
35
- <th scope="row"><?php echo $count; ?></i></th>
36
- <td><?php echo $exclude_image; ?></td>
37
- <th scope="col" class="text-center"><input type="checkbox" id="select-all" name="select-all[]" value="<?php echo $exclude_key; ?>" /></th>
 
38
  </tr>
 
 
39
  <?php
40
- $count++;
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
42
  }
 
 
 
43
  }
44
- //}
45
- else {
46
- echo '<tr><td colspan="3">No URL(s) Added Yet.</td></tr>';
47
- }
48
- ?>
49
- </tbody>
50
- <thead class="thead-dark">
 
 
51
  <tr>
52
- <th scope="col">#</th>
53
- <th scope="col">URL</th>
54
- <th scope="col" class="text-center"><input type="checkbox" id="select-all" name="select-all[]" value="-1" /></th>
55
  </tr>
56
- </thead>
57
- <tr>
58
- <th>&nbsp;</th>
59
- <th>&nbsp;</th>
60
- <th class="text-center"><button type="button" id="delete-all" name="delete-all" title="Delte All" onclick="return DeleteAllImg();"><i class="fa fa-trash"></i></button></th>
61
- </tr>
62
 
63
- </table>
64
  </div>
65
 
66
  <script>
9
  </div>
10
  <hr>
11
  <div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  <?php
13
+ $all_exclude_images = NULL;
14
+ $all_exclude_images = get_option('exclude_pin_it_images');
15
+ //print_r($all_exclude_images);
16
+
17
+ ?>
18
+ <table class="table">
19
+ <thead class="thead-dark">
20
+ <tr>
21
+ <th scope="col">#</th>
22
+ <th scope="col">URL</th>
23
+ <th scope="col" class="text-center"><input type="checkbox" id="select-all" name="select-all[]" value="-1" /></th>
24
  </tr>
25
+ </thead>
26
+ <tbody>
27
  <?php
28
+ //if($all_exclude_images != ''){
29
+ if(is_array($all_exclude_images) && count($all_exclude_images)) {
30
+ $count = 1;
31
+ foreach($all_exclude_images as $exclude_key => $exclude_image) {
32
+ if($exclude_image) {
33
+ ?>
34
+ <tr id="<?php echo $exclude_key; ?>">
35
+ <th scope="row"><?php echo $count; ?></th>
36
+ <td><?php echo $exclude_image; ?></td>
37
+ <th scope="col" class="text-center"><input type="checkbox" id="select-all" name="select-all[]" value="<?php echo $exclude_key; ?>" /></th>
38
+ </tr>
39
+ <?php
40
+ $count++;
41
+ }
42
  }
43
  }
44
+ //}
45
+ else {
46
+ echo '<tr><td colspan="3">No URL(s) Added Yet.</td></tr>';
47
  }
48
+ ?>
49
+ </tbody>
50
+ <thead class="thead-dark">
51
+ <tr>
52
+ <th scope="col">#</th>
53
+ <th scope="col">URL</th>
54
+ <th scope="col" class="text-center"><input type="checkbox" id="select-all" name="select-all[]" value="-1" /></th>
55
+ </tr>
56
+ </thead>
57
  <tr>
58
+ <th>&nbsp;</th>
59
+ <th>&nbsp;</th>
60
+ <th class="text-center"><button type="button" id="delete-all" name="delete-all" title="Delte All" onclick="return DeleteAllImg();"><i class="fa fa-trash"></i></button></th>
61
  </tr>
 
 
 
 
 
 
62
 
63
+ </table>
64
  </div>
65
 
66
  <script>
exclude-pages.php CHANGED
@@ -30,7 +30,7 @@ $all_excluded_pages = get_option('excluded_pint_it_pages');
30
  if( $exclude_page ) {
31
  ?>
32
  <tr id="<?php echo "page-".$exclude_key; ?>">
33
- <th scope="row"><?php echo $count; ?></i></th>
34
  <td><?php echo $exclude_page; ?></td>
35
  <th scope="col" class="text-center"><input type="checkbox" id="select-page-all" name="select-page-all[]" value="<?php echo $exclude_key; ?>" /></th>
36
  </tr>
30
  if( $exclude_page ) {
31
  ?>
32
  <tr id="<?php echo "page-".$exclude_key; ?>">
33
+ <th scope="row"><?php echo $count; ?></th>
34
  <td><?php echo $exclude_page; ?></td>
35
  <th scope="col" class="text-center"><input type="checkbox" id="select-page-all" name="select-page-all[]" value="<?php echo $exclude_key; ?>" /></th>
36
  </tr>
img/pint.jpg CHANGED
Binary file
our_product.php CHANGED
@@ -12,6 +12,28 @@
12
  </div>
13
  </div>
14
  <div class="row text-center">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  <div class="col products col-sm-6 col-md-4 p-3">
16
  <h4>Facebook Feed</h4>
17
  <p class="icon-size"><i class="fab fa-facebook-f"></i></p>
@@ -39,14 +61,7 @@
39
  <a class="btn btn-secondary btn-sm" href="https://wordpress.org/plugins/seo-image-optimizer/" target="_new" title="Download Plugin"><i class="fas fa-download"></i></a>
40
  <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/seo-image-optimizer-pro/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
41
  <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/seo-image-optimizer-pro/" target="_new" title="Plugin Demo"><i class="fas fa-eye"></i></a>
42
- </div>
43
- <div class="col products col-sm-6 col-md-4 p-3">
44
- <h4>Newsletter Subscription Form</h4>
45
- <p class="icon-size"><i class="fab fa-wpforms"></i></p>
46
- <a class="btn btn-secondary btn-sm" href="https://wordpress.org/plugins/newsletter-subscription-form/" target="_new" title="Download Plugin"><i class="fas fa-download"></i></a>
47
- <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/newsletter-subscription-form-pro/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
48
- <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/newsletter-subscription-form-pro/" target="_new" title="Plugin Demo"><i class="fas fa-eye"></i></a>
49
- </div>
50
  <div class="col products col-sm-6 col-md-4 p-3">
51
  <h4>Coming Soon Page</h4>
52
  <p class="icon-size"><i class="fas fa-rocket"></i></p>
@@ -145,6 +160,13 @@
145
  <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/advanced-google-maps/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
146
  <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/advanced-google-maps/" target="_new" title="Admin Demo"><i class="fas fa-eye"></i></a>
147
  </div>
 
 
 
 
 
 
 
148
  </div>
149
 
150
  <!-- Themes -->
12
  </div>
13
  </div>
14
  <div class="row text-center">
15
+ <div class="col products col-sm-6 col-md-4 p-3">
16
+ <h4>Real Estate Apartment Manager</h4>
17
+ <p class="icon-size"><i class="fab fa-facebook-f"></i></p>
18
+ <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/real-estate-apartment-manager/" target="_new" title="Download Plugin"><i class="fas fa-download"></i></a>
19
+ <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/real-estate-apartment-manager/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
20
+ <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/real-estate-apartment-manager/" target="_new" title="Plugin Demo"><i class="fas fa-eye"></i></a>
21
+ </div>
22
+ <div class="col products col-sm-6 col-md-4 p-3">
23
+ <h4>Testimonials Pro - WordPress Reviews</h4>
24
+ <p class="icon-size"><i class="fab fa-facebook-f"></i></p>
25
+ <a class="btn btn-secondary btn-sm" href="https://wordpress.org/plugins/testimonial-by-weblizar/" target="_new" title="Download Plugin"><i class="fas fa-download"></i></a>
26
+ <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/testimonial-pro/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
27
+ <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/testimonial-pro/" target="_new" title="Plugin Demo"><i class="fas fa-eye"></i></a>
28
+ </div>
29
+ <div class="col products col-sm-6 col-md-4 p-3">
30
+ <h4>Multi Institute Management</h4>
31
+ <p class="icon-size"><i class="fab fa-facebook-f"></i></p>
32
+ <a class="btn btn-secondary btn-sm" href="https://wordpress.org/plugins/institute-management/" target="_new" title="Download Plugin"><i class="fas fa-download"></i></a>
33
+ <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/multi-institute-management/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
34
+ <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/multi-institute-management/" target="_new" title="Plugin Demo"><i class="fas fa-eye"></i></a>
35
+ </div>
36
+
37
  <div class="col products col-sm-6 col-md-4 p-3">
38
  <h4>Facebook Feed</h4>
39
  <p class="icon-size"><i class="fab fa-facebook-f"></i></p>
61
  <a class="btn btn-secondary btn-sm" href="https://wordpress.org/plugins/seo-image-optimizer/" target="_new" title="Download Plugin"><i class="fas fa-download"></i></a>
62
  <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/seo-image-optimizer-pro/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
63
  <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/seo-image-optimizer-pro/" target="_new" title="Plugin Demo"><i class="fas fa-eye"></i></a>
64
+ </div>
 
 
 
 
 
 
 
65
  <div class="col products col-sm-6 col-md-4 p-3">
66
  <h4>Coming Soon Page</h4>
67
  <p class="icon-size"><i class="fas fa-rocket"></i></p>
160
  <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/advanced-google-maps/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
161
  <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/advanced-google-maps/" target="_new" title="Admin Demo"><i class="fas fa-eye"></i></a>
162
  </div>
163
+ <div class="col products col-sm-6 col-md-4 p-3">
164
+ <h4>Newsletter Subscription Form</h4>
165
+ <p class="icon-size"><i class="fab fa-wpforms"></i></p>
166
+ <a class="btn btn-secondary btn-sm" href="https://wordpress.org/plugins/newsletter-subscription-form/" target="_new" title="Download Plugin"><i class="fas fa-download"></i></a>
167
+ <a class="btn btn-secondary btn-sm" href="https://weblizar.com/plugins/newsletter-subscription-form-pro/" target="_new" title="Plugin Details"><i class="fas fa-info"></i></a>
168
+ <a class="btn btn-secondary btn-sm" href="http://demo.weblizar.com/newsletter-subscription-form-pro/" target="_new" title="Plugin Demo"><i class="fas fa-eye"></i></a>
169
+ </div>
170
  </div>
171
 
172
  <!-- Themes -->
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.9
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/
@@ -171,16 +171,25 @@ function PinItSaveSettings() {
171
  $PinItPage = sanitize_text_field($_POST['PinItPage']);
172
  $PinItOnHover = sanitize_text_field($_POST['PinItOnHover']);
173
  $PinItStatus = sanitize_text_field($_POST['PinItStatus']);
174
- $PinItDesign = sanitize_text_field($_POST['PinItDesign']);
175
- $PinItColor = sanitize_text_field($_POST['PinItColor']);
 
 
 
 
 
176
  $PinItSize = sanitize_text_field($_POST['PinItSize']);
177
 
178
  update_option('WL_Enable_Pinit_Post', $PinItPost);
179
  update_option('WL_Enable_Pinit_Page', $PinItPage);
180
  update_option('WL_Pinit_Btn_On_Hover', $PinItOnHover);
181
  update_option('WL_Mobile_Status', $PinItStatus);
 
182
  update_option('WL_Pinit_Btn_Design', $PinItDesign);
183
- update_option('WL_Pinit_Btn_Color', $PinItColor);
 
 
 
184
  update_option('WL_Pinit_Btn_Size', $PinItSize);
185
  } else {
186
  print 'Sorry, your nonce did not verify.';
1
  <?php
2
  /**
3
  * Plugin Name: Pinterest Pin It Button On Image Hover And After Post & Page Content
4
+ * Version: 2.7.0
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/
171
  $PinItPage = sanitize_text_field($_POST['PinItPage']);
172
  $PinItOnHover = sanitize_text_field($_POST['PinItOnHover']);
173
  $PinItStatus = sanitize_text_field($_POST['PinItStatus']);
174
+ if(isset($_POST['PinItDesign'])){
175
+ $PinItDesign = sanitize_text_field($_POST['PinItDesign']);
176
+ }
177
+ if(isset($_POST['PinItColor'])){
178
+ $PinItColor = sanitize_text_field($_POST['PinItColor']);
179
+ }
180
+ // $PinItColor = sanitize_text_field($_POST['PinItColor']);
181
  $PinItSize = sanitize_text_field($_POST['PinItSize']);
182
 
183
  update_option('WL_Enable_Pinit_Post', $PinItPost);
184
  update_option('WL_Enable_Pinit_Page', $PinItPage);
185
  update_option('WL_Pinit_Btn_On_Hover', $PinItOnHover);
186
  update_option('WL_Mobile_Status', $PinItStatus);
187
+ if(isset($PinItDesign)){
188
  update_option('WL_Pinit_Btn_Design', $PinItDesign);
189
+ }
190
+ if(isset($PinItColor)){
191
+ update_option('WL_Pinit_Btn_Color', $PinItColor);
192
+ }
193
  update_option('WL_Pinit_Btn_Size', $PinItSize);
194
  } else {
195
  print 'Sorry, your nonce did not verify.';
readme.txt CHANGED
@@ -5,8 +5,8 @@ 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: 5.1
9
- Stable tag: 2.6.9
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -14,8 +14,7 @@ Pin Your WordPress Blog Posts Pages Images With Pinterest Plugin
14
 
15
  == Description ==
16
 
17
- Pinterest pin it button on image hover plugin provides facility to pins your blog posts, pages and images into your Pinterest account boards. Simply install then activate the plugin and start pinning.
18
- You can show or hide pin it button in post/page. You can enable or disable pin it button on image hover through plugin settings tab.
19
 
20
  **Features**
21
 
@@ -111,6 +110,10 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/pintere
111
 
112
  For more information, see [Weblizar](https://wwww.weblizar.com/).
113
 
 
 
 
 
114
 
115
  = Version 2.6.9 =
116
  - Exclude image issue fixed
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.2
9
+ Stable tag: 2.7.0
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
14
 
15
  == Description ==
16
 
17
+ Pinterest pin it button on image hover plugin provides facility to pins your blog posts, pages and images into your Pinterest account boards. Simply install then activate the plugin and start pinning.You can show or hide pin it button in post/page. You can enable or disable pin it button on image hover through plugin settings tab.
 
18
 
19
  **Features**
20
 
110
 
111
  For more information, see [Weblizar](https://wwww.weblizar.com/).
112
 
113
+ = Version 2.7.0 =
114
+ - Version Update & Compatible with WordPress 5.2
115
+ - bugs fixed
116
+ - Recommendation panel updated
117
 
118
  = Version 2.6.9 =
119
  - Exclude image issue fixed
recommendations.php CHANGED
@@ -66,8 +66,9 @@
66
  <div id="postbox-container-2" class="postbox-container">
67
  <div id="advanced" class="meta-box-sortables">
68
  <div id="gallery_bank_get_started" class="postbox" >
69
- <div class="handlediv" data-target="ux_recommendation" title="Click to toggle" data-toggle="collapse"><br></div>
70
- <h2 class="hndle"><span>Get More Free Wordpress Plguins From Weblizar</span></h3>
 
71
  <div class="inside">
72
  <div id="ux_recommendation" class="gallery_bank_layout">
73
  <div class="separator-doubled"></div>
66
  <div id="postbox-container-2" class="postbox-container">
67
  <div id="advanced" class="meta-box-sortables">
68
  <div id="gallery_bank_get_started" class="postbox" >
69
+ <div class="handlediv" data-target="ux_recommendation" title="Click to toggle" data-toggle="collapse"><br>
70
+ </div>
71
+ <h2 class="hndle"><span>Get More Free Wordpress Plguins From Weblizar</span></h2>
72
  <div class="inside">
73
  <div id="ux_recommendation" class="gallery_bank_layout">
74
  <div class="separator-doubled"></div>
settings.php CHANGED
@@ -331,7 +331,6 @@ background: #ed5c5c;
331
  <div class="page-wrapper ui-tabs-panel deactive" id="option-ui-id-3">
332
  Premium Product Details Here
333
  </div>
334
- </div>
335
  <script>
336
  function SaveSettings(){
337
  jQuery('#pinitsave').hide();
331
  <div class="page-wrapper ui-tabs-panel deactive" id="option-ui-id-3">
332
  Premium Product Details Here
333
  </div>
 
334
  <script>
335
  function SaveSettings(){
336
  jQuery('#pinitsave').hide();