Version Description
- Bug fix: WP All Import.
Download this release
Release Info
Developer | marceljm |
Plugin | Featured Image From URL |
Version | 2.2.9 |
Comparing to | |
See all releases |
Code changes from version 2.2.8 to 2.2.9
- admin/html/menu.html +4 -10
- admin/meta-box.php +8 -0
- featured-image-from-url.php +1 -1
- readme.txt +6 -0
admin/html/menu.html
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
<li><a href="#tabs-c">Video</a></li>
|
21 |
<li><a href="#tabs-o">WooCommerce</a></li>
|
22 |
<li><a href="#tabs-p">WP All Import</a></li>
|
23 |
-
<li><a href="#tabs-a">
|
24 |
<br>
|
25 |
<br>
|
26 |
<div id="tabs-a">
|
@@ -87,7 +87,7 @@
|
|
87 |
</form>
|
88 |
</div>
|
89 |
<div style="display:inline-block;top:0px;position:relative">
|
90 |
-
(<b>US$
|
91 |
Moreover, <b>you will have lifetime automatic updates</b>.<br>
|
92 |
And if you need more license keys, you can get 5 by US$ 100.
|
93 |
</div>
|
@@ -2016,15 +2016,9 @@
|
|
2016 |
</div>
|
2017 |
<div id="tabs-d">
|
2018 |
<div class="box">
|
2019 |
-
<h2>Fast Support</h2>
|
2020 |
<div class="greybox">
|
2021 |
-
If you need any help, you can refer to <a href="https://wordpress.org/plugins/featured-image-from-url/faq/" target="_blank">FAQ</a> and <a href="https://wordpress.org/plugins/featured-image-from-url/screenshots/" target="_blank">screenshots</a> or send an email to <b>marcel@featuredimagefromurl.com</b>
|
2022 |
-
</div>
|
2023 |
-
</div>
|
2024 |
-
<div class="box">
|
2025 |
-
<h2>Report a Bug </h2>
|
2026 |
-
<div class="greybox">
|
2027 |
-
If you are reporting a bug, <b><button id="opener">click here</button></b> and send this dialog data to the email above, please.
|
2028 |
</div>
|
2029 |
</div>
|
2030 |
</div>
|
20 |
<li><a href="#tabs-c">Video</a></li>
|
21 |
<li><a href="#tabs-o">WooCommerce</a></li>
|
22 |
<li><a href="#tabs-p">WP All Import</a></li>
|
23 |
+
<li><a href="#tabs-a">Offer: Premium version + lifetime updates for <b>US$ 45</b></a></li>
|
24 |
<br>
|
25 |
<br>
|
26 |
<div id="tabs-a">
|
87 |
</form>
|
88 |
</div>
|
89 |
<div style="display:inline-block;top:0px;position:relative">
|
90 |
+
(<b>US$ 45</b> or more, please) and receive the download link by email within 12 hours.<br>
|
91 |
Moreover, <b>you will have lifetime automatic updates</b>.<br>
|
92 |
And if you need more license keys, you can get 5 by US$ 100.
|
93 |
</div>
|
2016 |
</div>
|
2017 |
<div id="tabs-d">
|
2018 |
<div class="box">
|
2019 |
+
<h2>Really Fast Support</h2>
|
2020 |
<div class="greybox">
|
2021 |
+
If you need any help, you can refer to <a href="https://wordpress.org/plugins/featured-image-from-url/faq/" target="_blank">FAQ</a> and <a href="https://wordpress.org/plugins/featured-image-from-url/screenshots/" target="_blank">screenshots</a> or send an email to <b>marcel@featuredimagefromurl.com</b> (send me this <b><button id="opener">data</button></b>, please).
|
|
|
|
|
|
|
|
|
|
|
|
|
2022 |
</div>
|
2023 |
</div>
|
2024 |
</div>
|
admin/meta-box.php
CHANGED
@@ -106,5 +106,13 @@ function fifu_update_or_delete_alt($post_id, $field, $value) {
|
|
106 |
delete_post_meta($post_id, $field, $value);
|
107 |
}
|
108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
add_action('before_delete_post', 'fifu_db_before_delete_post');
|
110 |
|
106 |
delete_post_meta($post_id, $field, $value);
|
107 |
}
|
108 |
|
109 |
+
add_action('pmxi_saved_post', 'fifu_wai_save');
|
110 |
+
|
111 |
+
function fifu_wai_save($post_id) {
|
112 |
+
$url = get_post_meta($post_id, 'fifu_image_url', true);
|
113 |
+
fifu_update_or_delete($post_id, 'fifu_image_url', $url);
|
114 |
+
fifu_save($post_id);
|
115 |
+
}
|
116 |
+
|
117 |
add_action('before_delete_post', 'fifu_db_before_delete_post');
|
118 |
|
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.2.
|
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.2.9
|
8 |
* Author: Marcel Jacques Machado
|
9 |
* Author URI: https://www.linkedin.com/in/marceljm/
|
10 |
*/
|
readme.txt
CHANGED
@@ -157,6 +157,9 @@ Features:
|
|
157 |
|
158 |
== Changelog ==
|
159 |
|
|
|
|
|
|
|
160 |
= 2.2.8 =
|
161 |
* Bug fix: allows URLs with special characters now.
|
162 |
|
@@ -511,6 +514,9 @@ was removed. To finish, a Premium version is now been presented.
|
|
511 |
|
512 |
== Upgrade Notice ==
|
513 |
|
|
|
|
|
|
|
514 |
= 2.2.8 =
|
515 |
* Bug fix: allows URLs with special characters now.
|
516 |
|
157 |
|
158 |
== Changelog ==
|
159 |
|
160 |
+
= 2.2.9 =
|
161 |
+
* Bug fix: WP All Import.
|
162 |
+
|
163 |
= 2.2.8 =
|
164 |
* Bug fix: allows URLs with special characters now.
|
165 |
|
514 |
|
515 |
== Upgrade Notice ==
|
516 |
|
517 |
+
= 2.2.9 =
|
518 |
+
* Bug fix: WP All Import.
|
519 |
+
|
520 |
= 2.2.8 =
|
521 |
* Bug fix: allows URLs with special characters now.
|
522 |
|