Version Description
- New option: Auto set screenshot as featured image > High resolution.
Download this release
Release Info
Developer | marceljm |
Plugin | Featured Image From URL |
Version | 3.8.9 |
Comparing to | |
See all releases |
Code changes from version 3.8.8 to 3.8.9
- admin/html/menu.html +34 -0
- admin/strings.php +6 -0
- featured-image-from-url.php +2 -2
- readme.txt +7 -7
admin/html/menu.html
CHANGED
@@ -480,6 +480,23 @@
|
|
480 |
</th>
|
481 |
<th>400, 600, 800...</th>
|
482 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
<tr class="color">
|
484 |
<th>
|
485 |
<?php $fifu['tab']['auto']() ?>
|
@@ -2590,6 +2607,7 @@
|
|
2590 |
<li><a href="#tabsScreenshot-a"><?php $fifu['screenshot']['tab']['auto']() ?></a></li>
|
2591 |
<li><a href="#tabsScreenshot-c"><?php $fifu['screenshot']['tab']['scale']() ?></a></li>
|
2592 |
<li><a href="#tabsScreenshot-b"><?php $fifu['screenshot']['tab']['crop']() ?></a></li>
|
|
|
2593 |
<br>
|
2594 |
<br>
|
2595 |
<div id="tabsScreenshot-a">
|
@@ -2649,6 +2667,22 @@
|
|
2649 |
</tr>
|
2650 |
</table>
|
2651 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2652 |
</ul>
|
2653 |
</div>
|
2654 |
</div>
|
480 |
</th>
|
481 |
<th>400, 600, 800...</th>
|
482 |
</tr>
|
483 |
+
<tr class="color">
|
484 |
+
<th>
|
485 |
+
<?php $fifu['tab']['auto']() ?>
|
486 |
+
</th>
|
487 |
+
<th>
|
488 |
+
<?php $fifu['title']['screenshot']() ?>
|
489 |
+
</th>
|
490 |
+
<th>
|
491 |
+
<?php $fifu['screenshot']['tab']['resolution']() ?>
|
492 |
+
</th>
|
493 |
+
<th>
|
494 |
+
wp fifu screenshot --high <toggle>
|
495 |
+
</th>
|
496 |
+
<th>
|
497 |
+
on, off
|
498 |
+
</th>
|
499 |
+
</tr>
|
500 |
<tr class="color">
|
501 |
<th>
|
502 |
<?php $fifu['tab']['auto']() ?>
|
2607 |
<li><a href="#tabsScreenshot-a"><?php $fifu['screenshot']['tab']['auto']() ?></a></li>
|
2608 |
<li><a href="#tabsScreenshot-c"><?php $fifu['screenshot']['tab']['scale']() ?></a></li>
|
2609 |
<li><a href="#tabsScreenshot-b"><?php $fifu['screenshot']['tab']['crop']() ?></a></li>
|
2610 |
+
<li><a href="#tabsScreenshot-d"><?php $fifu['screenshot']['tab']['resolution']() ?></a></li>
|
2611 |
<br>
|
2612 |
<br>
|
2613 |
<div id="tabsScreenshot-a">
|
2667 |
</tr>
|
2668 |
</table>
|
2669 |
</div>
|
2670 |
+
<div id="tabsScreenshot-d">
|
2671 |
+
<?php $fifu['screenshot']['resolution']['desc']() ?>
|
2672 |
+
<br><br>
|
2673 |
+
<table style="text-align:left">
|
2674 |
+
<tr>
|
2675 |
+
<th>
|
2676 |
+
<input
|
2677 |
+
type="submit"
|
2678 |
+
href="javascript:void(0)"
|
2679 |
+
class="toggleoff"
|
2680 |
+
value=""
|
2681 |
+
style="display:block;border:none">
|
2682 |
+
</th>
|
2683 |
+
</tr>
|
2684 |
+
</table>
|
2685 |
+
</div>
|
2686 |
</ul>
|
2687 |
</div>
|
2688 |
</div>
|
admin/strings.php
CHANGED
@@ -729,12 +729,18 @@ function fifu_get_strings_settings() {
|
|
729 |
$fifu['screenshot']['tab']['scale'] = function() {
|
730 |
_e("Scale", FIFU_SLUG);
|
731 |
};
|
|
|
|
|
|
|
732 |
$fifu['screenshot']['crop']['height'] = function() {
|
733 |
_e("height (px)", FIFU_SLUG);
|
734 |
};
|
735 |
$fifu['screenshot']['scale']['width'] = function() {
|
736 |
_e("width (px)", FIFU_SLUG);
|
737 |
};
|
|
|
|
|
|
|
738 |
|
739 |
// find
|
740 |
$fifu['finder']['desc'] = function() {
|
729 |
$fifu['screenshot']['tab']['scale'] = function() {
|
730 |
_e("Scale", FIFU_SLUG);
|
731 |
};
|
732 |
+
$fifu['screenshot']['tab']['resolution'] = function() {
|
733 |
+
_e("High resolution", FIFU_SLUG);
|
734 |
+
};
|
735 |
$fifu['screenshot']['crop']['height'] = function() {
|
736 |
_e("height (px)", FIFU_SLUG);
|
737 |
};
|
738 |
$fifu['screenshot']['scale']['width'] = function() {
|
739 |
_e("width (px)", FIFU_SLUG);
|
740 |
};
|
741 |
+
$fifu['screenshot']['resolution']['desc'] = function() {
|
742 |
+
_e("The default screenshot size is 500x348px. Enable the option below to have full screenshots, i.e., without cropping.", FIFU_SLUG);
|
743 |
+
};
|
744 |
|
745 |
// find
|
746 |
$fifu['finder']['desc'] = function() {
|
featured-image-from-url.php
CHANGED
@@ -4,11 +4,11 @@
|
|
4 |
* Plugin Name: Featured Image from URL (FIFU)
|
5 |
* Plugin URI: https://fifu.app/
|
6 |
* Description: Use an external image/video as featured image/video of a post or WooCommerce product.
|
7 |
-
* Version: 3.8.
|
8 |
* Author: fifu.app
|
9 |
* Author URI: https://fifu.app/
|
10 |
* WC requires at least: 4.0
|
11 |
-
* WC tested up to: 6.3.
|
12 |
* Text Domain: featured-image-from-url
|
13 |
* License: GPLv3
|
14 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
4 |
* Plugin Name: Featured Image from URL (FIFU)
|
5 |
* Plugin URI: https://fifu.app/
|
6 |
* Description: Use an external image/video as featured image/video of a post or WooCommerce product.
|
7 |
+
* Version: 3.8.9
|
8 |
* Author: fifu.app
|
9 |
* Author URI: https://fifu.app/
|
10 |
* WC requires at least: 4.0
|
11 |
+
* WC tested up to: 6.3.1
|
12 |
* Text Domain: featured-image-from-url
|
13 |
* License: GPLv3
|
14 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: marceljm
|
|
3 |
Donate link: https://donorbox.org/fifu
|
4 |
Tags: featured, image, url, video, woocommerce
|
5 |
Requires at least: 5.3
|
6 |
-
Tested up to: 5.9.
|
7 |
-
Stable tag: 3.8.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -227,20 +227,20 @@ Featured Image, Figurë e Zgjedhur, Image mise en avant, Uitgelichte afbeelding,
|
|
227 |
|
228 |
== Changelog ==
|
229 |
|
|
|
|
|
|
|
230 |
= 3.8.8 =
|
231 |
* New option: Auto set featured media from post content (option to dont get URL from post content can be checked/unchecked by default); enhancement: Quick Edit column integrated with CDN + Optimized Thumbnails; fix: conflict with Yoast Duplicate Post plugin (update of the duplicated post was changing the image of the original one); fix: PHP Notice (Undefined offset).
|
232 |
|
233 |
= 3.8.7 =
|
234 |
* Enhancement: REST API (integration with batch category); enhancement: don't get URL from post content (checked by default).
|
235 |
|
236 |
-
= 3.8.6 =
|
237 |
-
* Fix: Auto set featured media from post content > hide the image/video from content.
|
238 |
-
|
239 |
= others =
|
240 |
* [more](https://fifu.app/changelog)
|
241 |
|
242 |
|
243 |
== Upgrade Notice ==
|
244 |
|
245 |
-
= 3.8.
|
246 |
-
* New option: Auto set
|
3 |
Donate link: https://donorbox.org/fifu
|
4 |
Tags: featured, image, url, video, woocommerce
|
5 |
Requires at least: 5.3
|
6 |
+
Tested up to: 5.9.2
|
7 |
+
Stable tag: 3.8.9
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
227 |
|
228 |
== Changelog ==
|
229 |
|
230 |
+
= 3.8.9 =
|
231 |
+
* New option: Auto set screenshot as featured image > High resolution.
|
232 |
+
|
233 |
= 3.8.8 =
|
234 |
* New option: Auto set featured media from post content (option to dont get URL from post content can be checked/unchecked by default); enhancement: Quick Edit column integrated with CDN + Optimized Thumbnails; fix: conflict with Yoast Duplicate Post plugin (update of the duplicated post was changing the image of the original one); fix: PHP Notice (Undefined offset).
|
235 |
|
236 |
= 3.8.7 =
|
237 |
* Enhancement: REST API (integration with batch category); enhancement: don't get URL from post content (checked by default).
|
238 |
|
|
|
|
|
|
|
239 |
= others =
|
240 |
* [more](https://fifu.app/changelog)
|
241 |
|
242 |
|
243 |
== Upgrade Notice ==
|
244 |
|
245 |
+
= 3.8.9 =
|
246 |
+
* New option: Auto set screenshot as featured image > High resolution.
|