Featured Image From URL - Version 2.6.8

Version Description

  • Bug fixes: Ignore Auto Set option removed from Category editor; quotation marks issue on Social Tags.
Download this release

Release Info

Developer marceljm
Plugin Icon 128x128 Featured Image From URL
Version 2.6.8
Comparing to
See all releases

Code changes from version 2.6.7 to 2.6.8

admin/category.php CHANGED
@@ -23,7 +23,7 @@ function fifu_ctgr_edit_box($term) {
23
  $show_button = '';
24
  $show_alt = $show_image = $show_link = 'display:none;';
25
  }
26
- $show_ignore = '';
27
 
28
  include 'html/category.html';
29
  }
@@ -37,7 +37,7 @@ function fifu_ctgr_add_box() {
37
 
38
  $show_button = $url = $alt = '';
39
  $show_alt = $show_image = $show_link = 'display:none;';
40
- $show_ignore = '';
41
 
42
  include 'html/category.html';
43
  }
23
  $show_button = '';
24
  $show_alt = $show_image = $show_link = 'display:none;';
25
  }
26
+ $show_ignore = 'display:none;';
27
 
28
  include 'html/category.html';
29
  }
37
 
38
  $show_button = $url = $alt = '';
39
  $show_alt = $show_image = $show_link = 'display:none;';
40
+ $show_ignore = 'display:none;';
41
 
42
  include 'html/category.html';
43
  }
admin/html/menu.html CHANGED
@@ -1440,7 +1440,7 @@
1440
  <div class="greybox" id="grad2">
1441
  <b>Premium feature</b><br><br>
1442
 
1443
- FIFU supports videos from YouTube, Vimeo, Facebook, Instagram, Imgur, 9GAG, Cloudinary and Tumblr. You can enable the video meta box here.
1444
 
1445
  </div>
1446
 
@@ -2650,6 +2650,20 @@
2650
  From <b>September 2019</b>, always you guys report an issue between FIFU and another plugin or theme, the solution will be posted here.
2651
  </div>
2652
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2653
  <div class="box">
2654
  <table>
2655
  <tr>
1440
  <div class="greybox" id="grad2">
1441
  <b>Premium feature</b><br><br>
1442
 
1443
+ FIFU supports <b>public</b> videos from YouTube, Vimeo, Facebook, Instagram, Imgur, 9GAG, Cloudinary and Tumblr. You can enable the video meta box here.
1444
 
1445
  </div>
1446
 
2650
  From <b>September 2019</b>, always you guys report an issue between FIFU and another plugin or theme, the solution will be posted here.
2651
  </div>
2652
  </div>
2653
+ <div class="box">
2654
+ <table>
2655
+ <tr>
2656
+ <td style="border-bottom:none">2019-10-09</td>
2657
+ <td style="border-bottom:none"><h3>Ecome</h3></td>
2658
+ <td style="border-bottom:none">theme</td>
2659
+ </tr>
2660
+ </table>
2661
+ <div class="greybox" style="position: relative; top: -10px">
2662
+ Showing the external featured images:<br>
2663
+ 1) open "ecome/framework/framework.php";<br>
2664
+ 2) search for and remove "&& file_exists( $actual_file_path )".<br>
2665
+ </div>
2666
+ </div>
2667
  <div class="box">
2668
  <table>
2669
  <tr>
featured-image-from-url.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Featured Image from URL
5
  * Plugin URI: https://featuredimagefromurl.com/
6
  * Description: Use an external image as Featured Image of your post/page/custom post type (WooCommerce). Includes Auto Set (External Post), Product Gallery, Social Tags and more.
7
- * Version: 2.6.7
8
  * Author: Marcel Jacques Machado
9
  * Author URI: https://www.linkedin.com/in/marceljm/
10
  */
4
  * Plugin Name: Featured Image from URL
5
  * Plugin URI: https://featuredimagefromurl.com/
6
  * Description: Use an external image as Featured Image of your post/page/custom post type (WooCommerce). Includes Auto Set (External Post), Product Gallery, Social Tags and more.
7
+ * Version: 2.6.8
8
  * Author: Marcel Jacques Machado
9
  * Author URI: https://www.linkedin.com/in/marceljm/
10
  */
includes/thumbnail.php CHANGED
@@ -16,8 +16,8 @@ function fifu_add_js() {
16
  function fifu_add_social_tags() {
17
  $post_id = get_the_ID();
18
  $url = fifu_main_image_url($post_id);
19
- $title = get_the_title($post_id);
20
- $description = wp_strip_all_tags(get_post_field('post_excerpt', $post_id));
21
 
22
  if ($url && fifu_is_on('fifu_social'))
23
  include 'html/social.html';
16
  function fifu_add_social_tags() {
17
  $post_id = get_the_ID();
18
  $url = fifu_main_image_url($post_id);
19
+ $title = str_replace("'", "&#39;", get_the_title($post_id));
20
+ $description = str_replace("'", "&#39;", wp_strip_all_tags(get_post_field('post_excerpt', $post_id)));
21
 
22
  if ($url && fifu_is_on('fifu_social'))
23
  include 'html/social.html';
readme.txt CHANGED
@@ -159,6 +159,9 @@ Features:
159
 
160
  == Changelog ==
161
 
 
 
 
162
  = 2.6.7 =
163
  * Bug fixes: conflict between internal featured image and Default External Featured Image; Social Tags wasn't creating an image tag for the Default External Featured Image. Improvement: description social tag will use post_excerpt instead of post_content.
164
 
@@ -630,6 +633,9 @@ was removed. To finish, a Premium version is now been presented.
630
 
631
  == Upgrade Notice ==
632
 
 
 
 
633
  = 2.6.7 =
634
  * Bug fixes: conflict between internal featured image and Default External Featured Image; Social Tags wasn't creating an image tag for the Default External Featured Image. Improvement: description social tag will use post_excerpt instead of post_content.
635
 
159
 
160
  == Changelog ==
161
 
162
+ = 2.6.8 =
163
+ * Bug fixes: Ignore Auto Set option removed from Category editor; quotation marks issue on Social Tags.
164
+
165
  = 2.6.7 =
166
  * Bug fixes: conflict between internal featured image and Default External Featured Image; Social Tags wasn't creating an image tag for the Default External Featured Image. Improvement: description social tag will use post_excerpt instead of post_content.
167
 
633
 
634
  == Upgrade Notice ==
635
 
636
+ = 2.6.8 =
637
+ * Bug fixes: Ignore Auto Set option removed from Category editor; quotation marks issue on Social Tags.
638
+
639
  = 2.6.7 =
640
  * Bug fixes: conflict between internal featured image and Default External Featured Image; Social Tags wasn't creating an image tag for the Default External Featured Image. Improvement: description social tag will use post_excerpt instead of post_content.
641