Version Description
- Notice: FIFU is ready to receive translations; New language: Portuguese (Brazil); New features: Mute and Background Video; Improvement: og:image tag for internal images.
Download this release
Release Info
Developer | marceljm |
Plugin | Featured Image From URL |
Version | 3.1.4 |
Comparing to | |
See all releases |
Code changes from version 3.1.3 to 3.1.4
- admin/api.php +2 -2
- admin/html/category.html +1 -1
- admin/html/js/menu.js +6 -6
- admin/html/js/meta-box.js +2 -2
- admin/html/menu.html +446 -419
- admin/html/meta-box-shortcode.html +2 -2
- admin/html/meta-box-slider.html +2 -2
- admin/html/meta-box-video.html +2 -2
- admin/html/meta-box.html +11 -15
- admin/html/woo-meta-box-video.html +2 -2
- admin/html/woo-meta-box.html +2 -2
- admin/menu.php +3 -2
- admin/meta-box.php +18 -16
- admin/wai-addon.php +3 -3
- featured-image-from-url.php +11 -5
- includes/thumbnail.php +1 -0
- languages/featured-image-from-url-pt_BR.mo +0 -0
- languages/featured-image-from-url-pt_BR.po +1368 -0
- languages/featured-image-from-url.pot +1060 -0
- readme.txt +122 -108
admin/api.php
CHANGED
@@ -81,7 +81,7 @@ add_action('rest_api_init', function () {
|
|
81 |
'callback' => 'fifu_data_clean_api',
|
82 |
'permission_callback' => 'fifu_get_private_data_permissions_check',
|
83 |
));
|
84 |
-
register_rest_route('
|
85 |
'methods' => 'POST',
|
86 |
'callback' => 'fifu_run_delete_all_api',
|
87 |
'permission_callback' => 'fifu_get_private_data_permissions_check',
|
@@ -114,7 +114,7 @@ add_action('rest_api_init', function () {
|
|
114 |
|
115 |
function fifu_get_private_data_permissions_check() {
|
116 |
if (!current_user_can('edit_posts')) {
|
117 |
-
return new WP_Error('rest_forbidden', esc_html__('You
|
118 |
}
|
119 |
return true;
|
120 |
}
|
81 |
'callback' => 'fifu_data_clean_api',
|
82 |
'permission_callback' => 'fifu_get_private_data_permissions_check',
|
83 |
));
|
84 |
+
register_rest_route('featured-image-from-url/v2', '/run_delete_all_api/', array(
|
85 |
'methods' => 'POST',
|
86 |
'callback' => 'fifu_run_delete_all_api',
|
87 |
'permission_callback' => 'fifu_get_private_data_permissions_check',
|
114 |
|
115 |
function fifu_get_private_data_permissions_check() {
|
116 |
if (!current_user_can('edit_posts')) {
|
117 |
+
return new WP_Error('rest_forbidden', esc_html__('You cannot access private data.', 'featured-image-from-url'), array('status' => 401));
|
118 |
}
|
119 |
return true;
|
120 |
}
|
admin/html/category.html
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<tr>
|
4 |
<td>
|
5 |
<span class="dashicons dashicons-camera" style="font-size:20px"></span>
|
6 |
-
Featured Image from
|
7 |
</td>
|
8 |
<td>
|
9 |
<div class="box">
|
3 |
<tr>
|
4 |
<td>
|
5 |
<span class="dashicons dashicons-camera" style="font-size:20px"></span>
|
6 |
+
<?php esc_html_e('Featured Image (URL)', 'featured-image-from-url'); ?>
|
7 |
</td>
|
8 |
<td>
|
9 |
<div class="box">
|
admin/html/js/menu.js
CHANGED
@@ -62,7 +62,7 @@ function save(formName, url) {
|
|
62 |
}
|
63 |
|
64 |
function fifu_default_js() {
|
65 |
-
jQuery('#tabs-top').block({message:
|
66 |
|
67 |
toggle = jQuery("#fifu_toggle_enable_default_url").attr('class');
|
68 |
switch (toggle) {
|
@@ -97,7 +97,7 @@ function fifu_default_js() {
|
|
97 |
}
|
98 |
|
99 |
function fifu_fake_js() {
|
100 |
-
jQuery('#tabs-top').block({message:
|
101 |
|
102 |
toggle = jQuery("#fifu_toggle_fake").attr('class');
|
103 |
switch (toggle) {
|
@@ -141,7 +141,7 @@ function fifu_clean_js() {
|
|
141 |
}
|
142 |
|
143 |
function fifu_run_clean_js() {
|
144 |
-
jQuery('#tabs-top').block({message:
|
145 |
|
146 |
jQuery.ajax({
|
147 |
method: "POST",
|
@@ -174,11 +174,11 @@ function fifu_run_delete_all_js() {
|
|
174 |
fifu_run_clean_js();
|
175 |
fifu_run_clean_dimensions_all_js();
|
176 |
|
177 |
-
jQuery('#tabs-top').block({message:
|
178 |
|
179 |
jQuery.ajax({
|
180 |
method: "POST",
|
181 |
-
url: restUrl + '
|
182 |
async: true,
|
183 |
beforeSend: function (xhr) {
|
184 |
xhr.setRequestHeader('X-WP-Nonce', fifuScriptVars.nonce);
|
@@ -242,7 +242,7 @@ function fifu_clean_dimensions_all_js() {
|
|
242 |
}
|
243 |
|
244 |
function fifu_run_clean_dimensions_all_js() {
|
245 |
-
jQuery('#tabs-top').block({message:
|
246 |
|
247 |
jQuery.ajax({
|
248 |
method: "POST",
|
62 |
}
|
63 |
|
64 |
function fifu_default_js() {
|
65 |
+
jQuery('#tabs-top').block({message: fifuScriptVars.wait, css: {backgroundColor: 'none', border: 'none', color: 'white'}});
|
66 |
|
67 |
toggle = jQuery("#fifu_toggle_enable_default_url").attr('class');
|
68 |
switch (toggle) {
|
97 |
}
|
98 |
|
99 |
function fifu_fake_js() {
|
100 |
+
jQuery('#tabs-top').block({message: fifuScriptVars.wait, css: {backgroundColor: 'none', border: 'none', color: 'white'}});
|
101 |
|
102 |
toggle = jQuery("#fifu_toggle_fake").attr('class');
|
103 |
switch (toggle) {
|
141 |
}
|
142 |
|
143 |
function fifu_run_clean_js() {
|
144 |
+
jQuery('#tabs-top').block({message: fifuScriptVars.wait, css: {backgroundColor: 'none', border: 'none', color: 'white'}});
|
145 |
|
146 |
jQuery.ajax({
|
147 |
method: "POST",
|
174 |
fifu_run_clean_js();
|
175 |
fifu_run_clean_dimensions_all_js();
|
176 |
|
177 |
+
jQuery('#tabs-top').block({message: fifuScriptVars.wait, css: {backgroundColor: 'none', border: 'none', color: 'white'}});
|
178 |
|
179 |
jQuery.ajax({
|
180 |
method: "POST",
|
181 |
+
url: restUrl + 'featured-image-from-url/v2/run_delete_all_api/',
|
182 |
async: true,
|
183 |
beforeSend: function (xhr) {
|
184 |
xhr.setRequestHeader('X-WP-Nonce', fifuScriptVars.nonce);
|
242 |
}
|
243 |
|
244 |
function fifu_run_clean_dimensions_all_js() {
|
245 |
+
jQuery('#tabs-top').block({message: fifuScriptVars.wait, css: {backgroundColor: 'none', border: 'none', color: 'white'}});
|
246 |
|
247 |
jQuery.ajax({
|
248 |
method: "POST",
|
admin/html/js/meta-box.js
CHANGED
@@ -20,11 +20,11 @@ function previewImage() {
|
|
20 |
var $url = jQuery("#fifu_input_url").val();
|
21 |
|
22 |
if (jQuery("#fifu_input_url").val() && jQuery("#fifu_keywords").val())
|
23 |
-
$message =
|
24 |
else
|
25 |
$message = '';
|
26 |
|
27 |
-
if (!$url.startsWith("http")) {
|
28 |
jQuery("#fifu_keywords").val($url);
|
29 |
jQuery('#fifu_button').parent().parent().block({message: $message, css: {backgroundColor: 'none', border: 'none', color: 'white'}});
|
30 |
var xhr = new XMLHttpRequest();
|
20 |
var $url = jQuery("#fifu_input_url").val();
|
21 |
|
22 |
if (jQuery("#fifu_input_url").val() && jQuery("#fifu_keywords").val())
|
23 |
+
$message = fifuMetaBoxVars.wait;
|
24 |
else
|
25 |
$message = '';
|
26 |
|
27 |
+
if (!$url.startsWith("http") && !$url.startsWith("//")) {
|
28 |
jQuery("#fifu_keywords").val($url);
|
29 |
jQuery('#fifu_button').parent().parent().block({message: $message, css: {backgroundColor: 'none', border: 'none', color: 'white'}});
|
30 |
var xhr = new XMLHttpRequest();
|
admin/html/menu.html
CHANGED
@@ -2,94 +2,94 @@
|
|
2 |
|
3 |
<div class="header-box">
|
4 |
<h1 style="color:white;padding-left:20px"><span class="dashicons dashicons-camera" style="font-size:30px"></span><span style="padding-left:20px">featured image from url 3</span></h1>
|
5 |
-
<a href="https://chrome.google.com/webstore/detail/fifu-scraper/pccimcccbkdeeadhejdmnffmllpicola" target="_blank"><img class="fifu-chrome" src="https://storage.googleapis.com/featuredimagefromurl/chrome-web-store2.png" title="Chrome Extension Available"/></a>
|
6 |
</div>
|
7 |
|
8 |
<div id="tabs-top" style="float:left">
|
9 |
<ul>
|
10 |
-
<li><a href="#tabs-d"><i class="fas fa-envelope"></i> Help
|
11 |
-
<li><a href="#tabs-k"><i class="fas fa-user-cog"></i> Admin
|
12 |
-
<li><a href="#tabs-g"><i class="fas fa-image"></i> Featured Image
|
13 |
-
<li><a href="#tabs-b"><i class="fas fa-flag-checkered"></i> URL from Post Content
|
14 |
-
<li><a href="#tabs-j"><i class="fas fa-database"></i> Metadata
|
15 |
-
<li><a href="#tabs-i"><i class="fas fa-tachometer-alt"></i> Performance
|
16 |
-
<li><a href="#tabs-q"><i class="fas fa-robot"></i> REST API
|
17 |
-
<li><a href="#tabs-l"><i class="fas fa-code"></i> Shortcode
|
18 |
-
<li><a href="#tabs-m"><i class="fas fa-images"></i> Slider
|
19 |
-
<li><a href="#tabs-n"><i class="fas fa-share-alt"></i> Social
|
20 |
-
<li><a href="#tabs-e"><i class="fas fa-quote-left"></i> Text
|
21 |
-
<li><a href="#tabs-c"><i class="fas fa-play"></i> Video
|
22 |
-
<li><a href="#tabs-o"><i class="fas fa-shopping-cart"></i> WooCommerce
|
23 |
-
<li><a href="#tabs-p"><i class="fas fa-redo"></i> WP All Import
|
24 |
-
<li><a href="#tabs-t"><i class="fas fa-info-circle"></i> Troubleshooting
|
25 |
<li><a href="#tabs-a"><i class="fas fa-star"></i> Premium <b style="border-radius:2px;padding:3px;background-color:#32373c;color:white">$ 39.90</b></a></li>
|
26 |
<br>
|
27 |
<br>
|
28 |
<div id="tabs-a">
|
29 |
<a name="top"></a>
|
30 |
<div class="box">
|
31 |
-
<h2
|
32 |
<div class="greybox">
|
33 |
<table>
|
34 |
<tr>
|
35 |
-
<td style="border-bottom:none;text-align:right;"
|
36 |
-
<td style="border-bottom:none"
|
37 |
</tr>
|
38 |
<tr>
|
39 |
-
<td style="border-bottom:none;text-align:right;"
|
40 |
-
<td style="border-bottom:none"
|
41 |
</tr>
|
42 |
<tr>
|
43 |
-
<td style="border-bottom:none;text-align:right;"
|
44 |
-
<td style="border-bottom:none"
|
45 |
</tr>
|
46 |
<tr>
|
47 |
-
<td style="border-bottom:none;text-align:right;"
|
48 |
-
<td style="border-bottom:none"
|
49 |
</tr>
|
50 |
<tr>
|
51 |
-
<td style="border-bottom:none;text-align:right;"
|
52 |
-
<td style="border-bottom:none"
|
53 |
</tr>
|
54 |
<tr>
|
55 |
-
<td style="border-bottom:none;text-align:right;"
|
56 |
-
<td style="border-bottom:none"
|
57 |
</tr>
|
58 |
</table>
|
59 |
</div>
|
60 |
</div>
|
61 |
<div class="box">
|
62 |
-
<h2><a href="https://fifu.app/">Featured Image from URL
|
63 |
<iframe style="width:100%;height:600px" src="https://fifu.app/"></iframe>
|
64 |
</div>
|
65 |
</div>
|
66 |
|
67 |
<div id="tabs-k">
|
68 |
<div class="box">
|
69 |
-
<h2
|
70 |
<div class="greybox">
|
71 |
-
The plugin adds a new column
|
72 |
</div>
|
73 |
<br>
|
74 |
<form
|
75 |
id="fifu_form_column"
|
76 |
action="javascript:void(0)"
|
77 |
method="post">
|
78 |
-
<input id="fifu_input_column_height" type="text" name="fifu_input_column_height" value="<?php echo $column_height; ?>" placeholder="e.g.: 64" size="4">
|
79 |
-
<input type="submit" value="Submit" >
|
80 |
</form>
|
81 |
</div>
|
82 |
|
83 |
<div class="box">
|
84 |
-
<h2
|
85 |
<div class="greybox" id="grad2">
|
86 |
-
<b>Premium
|
87 |
-
|
88 |
<table style="text-align:left">
|
89 |
<tr>
|
90 |
<th>
|
91 |
<label for="fifu_input_spinner_image"
|
92 |
-
placehold
|
93 |
</th>
|
94 |
<th>
|
95 |
<input id="fifu_input_spinner_image"
|
@@ -99,7 +99,7 @@
|
|
99 |
</tr>
|
100 |
<tr>
|
101 |
<th>
|
102 |
-
<label for="fifu_input_spinner_video"
|
103 |
</th>
|
104 |
<th>
|
105 |
<input id="fifu_input_spinner_video"
|
@@ -109,7 +109,7 @@
|
|
109 |
</tr>
|
110 |
<tr>
|
111 |
<th>
|
112 |
-
<label for="fifu_input_spinner_slider"
|
113 |
</th>
|
114 |
<th>
|
115 |
<input id="fifu_input_spinner_slider"
|
@@ -120,12 +120,12 @@
|
|
120 |
</table>
|
121 |
</div>
|
122 |
<br>
|
123 |
-
<input type="submit" value="Submit" disabled>
|
124 |
</div>
|
125 |
<div class="box">
|
126 |
-
<h2
|
127 |
<div class="greybox">
|
128 |
-
Limit of rows to UPDATE, INSERT or DELETE by query. Higher this number, faster the features
|
129 |
<form
|
130 |
id="fifu_form_db"
|
131 |
action="javascript:void(0)"
|
@@ -135,7 +135,7 @@
|
|
135 |
<tr>
|
136 |
<th>
|
137 |
<label for="fifu_input_spinner_db"
|
138 |
-
placehold
|
139 |
</th>
|
140 |
<th>
|
141 |
<input id="fifu_input_spinner_db"
|
@@ -144,7 +144,7 @@
|
|
144 |
size="4">
|
145 |
</th>
|
146 |
<th>
|
147 |
-
<input type="submit" value="Submit">
|
148 |
</th>
|
149 |
</tr>
|
150 |
</table>
|
@@ -152,15 +152,15 @@
|
|
152 |
</div>
|
153 |
</div>
|
154 |
<div class="box">
|
155 |
-
<h2
|
156 |
<div class="greybox" id="grad2">
|
157 |
-
<b>Premium
|
158 |
-
If you are setting the image URLs in a nonstandard way, the images probably won't be shown at front-end because some
|
159 |
<table style="text-align:left">
|
160 |
<tr>
|
161 |
<th>
|
162 |
<label for="fifu_input_spinner_cron_metadata"
|
163 |
-
placehold
|
164 |
</th>
|
165 |
<th>
|
166 |
<input id="fifu_input_spinner_cron_metadata"
|
@@ -168,7 +168,7 @@
|
|
168 |
size="4">
|
169 |
</th>
|
170 |
<th>
|
171 |
-
<input type="submit" value="Submit" disabled>
|
172 |
</th>
|
173 |
</tr>
|
174 |
</table>
|
@@ -182,9 +182,9 @@
|
|
182 |
style="display:block;border:none">
|
183 |
</div>
|
184 |
<div class="box">
|
185 |
-
<h2
|
186 |
<div class="greybox">
|
187 |
-
|
188 |
</div>
|
189 |
<br>
|
190 |
<form
|
@@ -215,9 +215,9 @@
|
|
215 |
</form>
|
216 |
</div>
|
217 |
<div class="box">
|
218 |
-
<h2
|
219 |
<div class="greybox">
|
220 |
-
If for some reason jQuery is missing from your site, which is not commom, you can import that from a CDN.
|
221 |
</div>
|
222 |
<br>
|
223 |
<form
|
@@ -241,15 +241,15 @@
|
|
241 |
id="fifu_input_jquery"
|
242 |
name="fifu_input_jquery"
|
243 |
value="" ></td>
|
244 |
-
<td
|
245 |
</tr>
|
246 |
</table>
|
247 |
</form>
|
248 |
</div>
|
249 |
<div class="box">
|
250 |
-
<h2
|
251 |
<div class="greybox">
|
252 |
-
|
253 |
</div>
|
254 |
<br>
|
255 |
<form
|
@@ -276,10 +276,10 @@
|
|
276 |
<div id="tabs-b">
|
277 |
<div class="box">
|
278 |
|
279 |
-
<h2
|
280 |
<div class="greybox">
|
281 |
-
|
282 |
-
<b
|
283 |
</div>
|
284 |
|
285 |
<br>
|
@@ -297,11 +297,11 @@
|
|
297 |
size="3"
|
298 |
style="width:40px">
|
299 |
<br>
|
300 |
-
<input type="submit" value="OK" style="width:72px">
|
301 |
</form>
|
302 |
</th>
|
303 |
<th>
|
304 |
-
image
|
305 |
</th>
|
306 |
</tr>
|
307 |
<tr>
|
@@ -327,7 +327,7 @@
|
|
327 |
</form>
|
328 |
</th>
|
329 |
<th>
|
330 |
-
use the 1st (or nth) image
|
331 |
</th>
|
332 |
</tr>
|
333 |
<tr>
|
@@ -353,7 +353,7 @@
|
|
353 |
</form>
|
354 |
</th>
|
355 |
<th>
|
356 |
-
hide the 1st (or nth) image
|
357 |
</th>
|
358 |
</tr>
|
359 |
<tr>
|
@@ -380,7 +380,7 @@
|
|
380 |
</form>
|
381 |
</th>
|
382 |
<th>
|
383 |
-
remove query strings (whatever follows the question mark sign "?")
|
384 |
</th>
|
385 |
</tr>
|
386 |
<tr>
|
@@ -406,21 +406,20 @@
|
|
406 |
</form>
|
407 |
</th>
|
408 |
<th>
|
409 |
-
overwrite the existing
|
410 |
</th>
|
411 |
</tr>
|
412 |
</table>
|
413 |
</div>
|
414 |
<div class="box">
|
415 |
-
<h2
|
416 |
<div class="greybox" id="grad2">
|
417 |
-
<b>Premium
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
To repeat the process enable the toggle again.
|
422 |
<br><br>
|
423 |
-
To schedule this process (hourly, daily etc), you can use the
|
424 |
</div>
|
425 |
<br>
|
426 |
<table style="text-align:left">
|
@@ -434,7 +433,7 @@
|
|
434 |
style="display:block;border:none">
|
435 |
</th>
|
436 |
<th>
|
437 |
-
ignore posts that already have
|
438 |
</th>
|
439 |
</tr>
|
440 |
<tr>
|
@@ -447,7 +446,7 @@
|
|
447 |
style="display:block;border:none">
|
448 |
</th>
|
449 |
<th>
|
450 |
-
update all your posts
|
451 |
</th>
|
452 |
</tr>
|
453 |
</table>
|
@@ -455,21 +454,21 @@
|
|
455 |
</div>
|
456 |
<div id="tabs-g">
|
457 |
<div class="box">
|
458 |
-
<h2
|
459 |
<div class="greybox" id="grad2">
|
460 |
-
<b>Premium
|
461 |
-
If you
|
462 |
</div>
|
463 |
<br>
|
464 |
|
465 |
<div id="tabsCrop">
|
466 |
|
467 |
<ul>
|
468 |
-
<li><a href="#tabsCrop-a"
|
469 |
-
<li><a href="#tabsCrop-b"
|
470 |
-
<li><a href="#tabsCrop-c"
|
471 |
-
<li><a href="#tabsCrop-d"
|
472 |
-
<li><a href="#tabsCrop-e"
|
473 |
<br>
|
474 |
<br>
|
475 |
<div id="tabsCrop-a">
|
@@ -489,56 +488,56 @@
|
|
489 |
|
490 |
<div id="tabsCrop-b">
|
491 |
<div>
|
492 |
-
Examples of selectors
|
493 |
<table style="text-align: left;">
|
494 |
<tr>
|
495 |
<th><b>#</b><i>products</i></th>
|
496 |
-
<th>(
|
497 |
</tr>
|
498 |
<tr>
|
499 |
<th><b>.</b><i>my-post-area</i></th>
|
500 |
-
<th>(
|
501 |
</tr>
|
502 |
<tr>
|
503 |
<th><b>#</b><i>products|4:3</i></th>
|
504 |
-
<th>(
|
505 |
</tr>
|
506 |
</table>
|
507 |
<br>
|
508 |
|
509 |
<input id="fifu_input_crop0"
|
510 |
type="text"
|
511 |
-
placeholder="selector 1"
|
512 |
style="width:130px"
|
513 |
value="">
|
514 |
<input id="fifu_input_crop1"
|
515 |
type="text"
|
516 |
-
placeholder="selector 2"
|
517 |
style="width:130px"
|
518 |
value="">
|
519 |
<input id="fifu_input_crop2"
|
520 |
type="text"
|
521 |
-
placeholder="selector 3"
|
522 |
style="width:130px"
|
523 |
value="">
|
524 |
<input id="fifu_input_crop3"
|
525 |
type="text"
|
526 |
-
placeholder="selector 4"
|
527 |
style="width:130px"
|
528 |
value="">
|
529 |
<input id="fifu_input_crop4"
|
530 |
type="text"
|
531 |
-
placeholder="selector 5"
|
532 |
style="width:130px"
|
533 |
value="">
|
534 |
<input type="submit"
|
535 |
-
value="Submit" disabled>
|
536 |
</div>
|
537 |
</div>
|
538 |
|
539 |
<div id="tabsCrop-c">
|
540 |
<div>
|
541 |
-
Examples of valid size ratios: 3:2, 16:9, 1:1...
|
542 |
<br>
|
543 |
<br>
|
544 |
<table style="text-align:left">
|
@@ -549,7 +548,7 @@
|
|
549 |
style="width:75px"
|
550 |
value="">
|
551 |
<input type="submit"
|
552 |
-
value="Submit" disabled>
|
553 |
</th>
|
554 |
</tr>
|
555 |
</table>
|
@@ -557,9 +556,9 @@
|
|
557 |
</div>
|
558 |
|
559 |
<div id="tabsCrop-d">
|
560 |
-
- <b>cover</b>: crops the images (the options center, top and bottom will be available in the post editor)
|
561 |
-
- <b>contain</b>: shows full images (in smaller sizes)
|
562 |
-
- <b>fill</b>: deforms the images
|
563 |
<br>
|
564 |
<select id="select_fit" style="width:100px">
|
565 |
<option value="cover">cover</option>
|
@@ -567,7 +566,7 @@
|
|
567 |
<option value="fill">fill</option>
|
568 |
</select>
|
569 |
<input type="submit"
|
570 |
-
value="Submit" disabled>
|
571 |
</form>
|
572 |
</div>
|
573 |
|
@@ -581,7 +580,7 @@
|
|
581 |
size="5">
|
582 |
</th>
|
583 |
<th>
|
584 |
-
time (in ms)
|
585 |
</th>
|
586 |
</tr>
|
587 |
</table>
|
@@ -591,10 +590,10 @@
|
|
591 |
</div>
|
592 |
|
593 |
<div class="box">
|
594 |
-
<h2
|
595 |
<div class="greybox" id="grad2">
|
596 |
-
<b>Premium
|
597 |
-
|
598 |
</div>
|
599 |
<br>
|
600 |
<input id="fifu_input_unsplash_size"
|
@@ -603,14 +602,14 @@
|
|
603 |
value=""
|
604 |
size="8">
|
605 |
<input type="submit"
|
606 |
-
value="Submit" disabled>
|
607 |
</div>
|
608 |
|
609 |
<div class="box">
|
610 |
-
<h2
|
611 |
<div class="greybox" id="grad2">
|
612 |
-
<b>Premium
|
613 |
-
|
614 |
<br><br>
|
615 |
<input id="fifu_input_error_url"
|
616 |
type="text"
|
@@ -618,14 +617,14 @@
|
|
618 |
style="width:675px"
|
619 |
value="">
|
620 |
<input type="submit"
|
621 |
-
value="Submit" disabled>
|
622 |
</div>
|
623 |
</div>
|
624 |
|
625 |
<div class="box">
|
626 |
-
<h2
|
627 |
<div class="greybox">
|
628 |
-
Useful if you have small
|
629 |
</div>
|
630 |
<br>
|
631 |
<table style="text-align:left">
|
@@ -652,16 +651,16 @@
|
|
652 |
</form>
|
653 |
</th>
|
654 |
<th>
|
655 |
-
original size
|
656 |
</th>
|
657 |
</tr>
|
658 |
</table>
|
659 |
</div>
|
660 |
|
661 |
<div class="box">
|
662 |
-
<h2
|
663 |
<div class="greybox">
|
664 |
-
|
665 |
<br><br>
|
666 |
<form
|
667 |
id="fifu_form_default_url"
|
@@ -675,7 +674,7 @@
|
|
675 |
value="<?php echo $default_url; ?>">
|
676 |
|
677 |
<input type="submit"
|
678 |
-
value="Submit"
|
679 |
onclick="fifu_default_js()">
|
680 |
</form>
|
681 |
</div>
|
@@ -692,7 +691,7 @@
|
|
692 |
href="javascript:void(0)"
|
693 |
id="fifu_toggle_enable_default_url"
|
694 |
onclick="invert('enable_default_url');
|
695 |
-
|
696 |
name="fifu_toggle_enable_default_url"
|
697 |
class="<?php echo $enable_default_url; ?>"
|
698 |
value=""
|
@@ -707,9 +706,9 @@
|
|
707 |
</div>
|
708 |
|
709 |
<div class="box">
|
710 |
-
<h2
|
711 |
<div class="greybox">
|
712 |
-
|
713 |
</div>
|
714 |
<br>
|
715 |
<table style="text-align:left">
|
@@ -738,7 +737,7 @@
|
|
738 |
</form>
|
739 |
</th>
|
740 |
<th>
|
741 |
-
on page
|
742 |
</th>
|
743 |
</tr>
|
744 |
<tr>
|
@@ -766,16 +765,16 @@
|
|
766 |
</form>
|
767 |
</th>
|
768 |
<th>
|
769 |
-
on post
|
770 |
</th>
|
771 |
</tr>
|
772 |
</table>
|
773 |
</div>
|
774 |
|
775 |
<div class="box">
|
776 |
-
<h2
|
777 |
<div class="greybox">
|
778 |
-
|
779 |
</div>
|
780 |
<br>
|
781 |
<table style="text-align:left">
|
@@ -802,7 +801,7 @@
|
|
802 |
</form>
|
803 |
</th>
|
804 |
<th>
|
805 |
-
on page
|
806 |
</th>
|
807 |
</tr>
|
808 |
<tr>
|
@@ -828,7 +827,7 @@
|
|
828 |
</form>
|
829 |
</th>
|
830 |
<th>
|
831 |
-
on post
|
832 |
</th>
|
833 |
</tr>
|
834 |
<tr>
|
@@ -855,56 +854,56 @@
|
|
855 |
</form>
|
856 |
</th>
|
857 |
<th>
|
858 |
-
on custom post type
|
859 |
</th>
|
860 |
</tr>
|
861 |
</table>
|
862 |
</div>
|
863 |
|
864 |
<div class="box">
|
865 |
-
<h2
|
866 |
<div class="greybox" id="grad2">
|
867 |
-
<b>Premium
|
868 |
-
Choose
|
869 |
</div>
|
870 |
<br>
|
871 |
<select id="select_hover" style="width:30%">
|
872 |
<option value=""></option>
|
873 |
-
<option value="hover17"
|
874 |
-
<option value="hover02"
|
875 |
-
<option value="hover07"
|
876 |
-
<option value="hover10"
|
877 |
-
<option value="hover04"
|
878 |
-
<option value="hover15"
|
879 |
-
<option value="hover13"
|
880 |
-
<option value="hover08"
|
881 |
-
<option value="hover16"
|
882 |
-
<option value="hover12"
|
883 |
-
<option value="hover11"
|
884 |
-
<option value="hover18"
|
885 |
-
<option value="hover06"
|
886 |
-
<option value="hover09"
|
887 |
-
<option value="hover14"
|
888 |
-
<option value="hover05"
|
889 |
-
<option value="hover01"
|
890 |
-
<option value="hover03"
|
891 |
</select>
|
892 |
|
893 |
<input id="fifu_input_hover_selector"
|
894 |
type="text"
|
895 |
name="fifu_input_hover_selector"
|
896 |
-
placeholder="CSS selectors (optional)"
|
897 |
value=""
|
898 |
style="width:50%">
|
899 |
|
900 |
-
<input type="submit" value="Submit" disabled>
|
901 |
</div>
|
902 |
|
903 |
<div class="box">
|
904 |
-
<h2
|
905 |
<div class="greybox" id="grad2">
|
906 |
-
<b>Premium
|
907 |
-
|
908 |
</div>
|
909 |
<br>
|
910 |
<input
|
@@ -915,9 +914,9 @@
|
|
915 |
</div>
|
916 |
|
917 |
<div class="box">
|
918 |
-
<h2
|
919 |
<div class="greybox">
|
920 |
-
|
921 |
width: 50%; border-radius: 8px; border: 1px solid #ddd; padding: 5px;
|
922 |
</div>
|
923 |
<br>
|
@@ -933,14 +932,14 @@
|
|
933 |
value="<?php echo $css_style; ?>">
|
934 |
|
935 |
<input type="submit"
|
936 |
-
value="Submit" >
|
937 |
</form>
|
938 |
</div>
|
939 |
|
940 |
<div class="box">
|
941 |
-
<h2
|
942 |
<div class="greybox">
|
943 |
-
|
944 |
</div>
|
945 |
<br>
|
946 |
<form
|
@@ -966,10 +965,10 @@
|
|
966 |
|
967 |
<div class="box">
|
968 |
|
969 |
-
<h2
|
970 |
|
971 |
<div class="greybox">
|
972 |
-
|
973 |
</div>
|
974 |
|
975 |
<br>
|
@@ -999,7 +998,7 @@
|
|
999 |
</form>
|
1000 |
</th>
|
1001 |
<th>
|
1002 |
-
save and use image dimensions
|
1003 |
</th>
|
1004 |
</tr>
|
1005 |
<tr>
|
@@ -1012,7 +1011,7 @@
|
|
1012 |
type="submit"
|
1013 |
href="javascript:void(0)"
|
1014 |
id="fifu_toggle_save_dimensions_all"
|
1015 |
-
onclick="invert('save_dimensions_all');fifu_save_dimensions_all_js();"
|
1016 |
name="fifu_toggle_save_dimensions_all"
|
1017 |
class="<?php echo $enable_save_dimensions_all; ?>"
|
1018 |
value=""
|
@@ -1026,7 +1025,7 @@
|
|
1026 |
</form>
|
1027 |
</th>
|
1028 |
<th>
|
1029 |
-
save the
|
1030 |
</th>
|
1031 |
<th>
|
1032 |
<div id="countdown"><?php echo fifu_db_missing_dimensions() ?></div>
|
@@ -1042,7 +1041,7 @@
|
|
1042 |
type="submit"
|
1043 |
href="javascript:void(0)"
|
1044 |
id="fifu_toggle_clean_dimensions_all"
|
1045 |
-
onclick="invert('clean_dimensions_all');fifu_clean_dimensions_all_js();"
|
1046 |
name="fifu_toggle_clean_dimensions_all"
|
1047 |
class="<?php echo $enable_clean_dimensions_all; ?>"
|
1048 |
value=""
|
@@ -1056,7 +1055,7 @@
|
|
1056 |
</form>
|
1057 |
</th>
|
1058 |
<th>
|
1059 |
-
clean the
|
1060 |
</th>
|
1061 |
</tr>
|
1062 |
<tr>
|
@@ -1083,7 +1082,7 @@
|
|
1083 |
</form>
|
1084 |
</th>
|
1085 |
<th>
|
1086 |
-
follow redirects (it will make the process
|
1087 |
</th>
|
1088 |
</tr>
|
1089 |
</table>
|
@@ -1093,9 +1092,9 @@
|
|
1093 |
</div>
|
1094 |
<div id="tabs-j">
|
1095 |
<div class="box">
|
1096 |
-
<h2
|
1097 |
<div class="greybox">
|
1098 |
-
Most themes
|
1099 |
</div>
|
1100 |
<br>
|
1101 |
<form
|
@@ -1107,7 +1106,7 @@
|
|
1107 |
href="javascript:void(0)"
|
1108 |
id="fifu_toggle_fake"
|
1109 |
onclick="invert('fake');
|
1110 |
-
|
1111 |
name="fifu_toggle_fake"
|
1112 |
class="<?php echo $enable_fake; ?>"
|
1113 |
value=""
|
@@ -1122,11 +1121,11 @@
|
|
1122 |
|
1123 |
<div class="box">
|
1124 |
|
1125 |
-
<h2
|
1126 |
|
1127 |
<div class="greybox">
|
1128 |
|
1129 |
-
This option might be necessary if you intend to deactivate the plugin and use only internal
|
1130 |
|
1131 |
</div>
|
1132 |
|
@@ -1144,7 +1143,7 @@
|
|
1144 |
href="javascript:void(0)"
|
1145 |
id="fifu_toggle_data_clean"
|
1146 |
onclick="invert('data_clean');
|
1147 |
-
|
1148 |
name="fifu_toggle_data_clean"
|
1149 |
class="<?php echo $enable_data_clean; ?>"
|
1150 |
value=""
|
@@ -1158,7 +1157,7 @@
|
|
1158 |
</form>
|
1159 |
</th>
|
1160 |
<th>
|
1161 |
-
it will be automatically disabled when finished
|
1162 |
</th>
|
1163 |
</tr>
|
1164 |
</table>
|
@@ -1166,11 +1165,11 @@
|
|
1166 |
|
1167 |
<div class="box">
|
1168 |
|
1169 |
-
<h2
|
1170 |
|
1171 |
<div class="greybox">
|
1172 |
|
1173 |
-
<b
|
1174 |
|
1175 |
</div>
|
1176 |
|
@@ -1201,7 +1200,7 @@
|
|
1201 |
</form>
|
1202 |
</th>
|
1203 |
<th>
|
1204 |
-
|
1205 |
</th>
|
1206 |
</tr>
|
1207 |
<tr>
|
@@ -1214,7 +1213,7 @@
|
|
1214 |
type="submit"
|
1215 |
href="javascript:void(0)"
|
1216 |
id="fifu_toggle_run_delete_all"
|
1217 |
-
onclick="invert('run_delete_all');fifu_run_delete_all_js();"
|
1218 |
name="fifu_toggle_run_delete_all"
|
1219 |
class="<?php echo $enable_run_delete_all; ?>"
|
1220 |
value=""
|
@@ -1228,7 +1227,7 @@
|
|
1228 |
</form>
|
1229 |
</th>
|
1230 |
<th>
|
1231 |
-
|
1232 |
</th>
|
1233 |
</tr>
|
1234 |
</table>
|
@@ -1237,13 +1236,13 @@
|
|
1237 |
<div id="tabs-l">
|
1238 |
<div class="box">
|
1239 |
|
1240 |
-
<h2
|
1241 |
|
1242 |
<div class="greybox" id="grad2">
|
1243 |
-
<b>Premium
|
1244 |
|
1245 |
-
This experimental feature allows to
|
1246 |
-
<b
|
1247 |
|
1248 |
</div>
|
1249 |
|
@@ -1275,7 +1274,7 @@
|
|
1275 |
</form>
|
1276 |
</th>
|
1277 |
<th>
|
1278 |
-
minimum width (px)
|
1279 |
|
1280 |
<form
|
1281 |
id="fifu_form_shortcode_min_width"
|
@@ -1289,7 +1288,7 @@
|
|
1289 |
value=""
|
1290 |
style="width:85px">
|
1291 |
<br>
|
1292 |
-
<input type="submit" value="OK" style="width:85px">
|
1293 |
</form>
|
1294 |
</th>
|
1295 |
</tr>
|
@@ -1300,11 +1299,11 @@
|
|
1300 |
<div id="tabs-e">
|
1301 |
<div class="box">
|
1302 |
|
1303 |
-
<h2
|
1304 |
|
1305 |
<div class="greybox">
|
1306 |
|
1307 |
-
|
1308 |
|
1309 |
</div>
|
1310 |
|
@@ -1335,7 +1334,7 @@
|
|
1335 |
</form>
|
1336 |
</th>
|
1337 |
<th>
|
1338 |
-
copy the post title to FIFU alt/title field (it
|
1339 |
</th>
|
1340 |
</tr>
|
1341 |
<tr>
|
@@ -1362,7 +1361,7 @@
|
|
1362 |
</form>
|
1363 |
</th>
|
1364 |
<th>
|
1365 |
-
always use the post title as image
|
1366 |
</th>
|
1367 |
</tr>
|
1368 |
</table>
|
@@ -1372,12 +1371,12 @@
|
|
1372 |
<div id="tabs-c">
|
1373 |
<div class="box">
|
1374 |
|
1375 |
-
<h2
|
1376 |
|
1377 |
<div class="greybox" id="grad2">
|
1378 |
-
<b>Premium
|
1379 |
|
1380 |
-
FIFU supports videos from YouTube, Vimeo,
|
1381 |
|
1382 |
</div>
|
1383 |
|
@@ -1408,10 +1407,10 @@
|
|
1408 |
</div>
|
1409 |
|
1410 |
<div class="box">
|
1411 |
-
<h2
|
1412 |
<div class="greybox" id="grad2">
|
1413 |
-
<b>Premium
|
1414 |
-
|
1415 |
</div>
|
1416 |
<br>
|
1417 |
<table style="text-align:left">
|
@@ -1425,7 +1424,7 @@
|
|
1425 |
style="display:block;border:none">
|
1426 |
</th>
|
1427 |
<th>
|
1428 |
-
on home
|
1429 |
</th>
|
1430 |
</tr>
|
1431 |
<tr>
|
@@ -1438,7 +1437,7 @@
|
|
1438 |
style="display:block;border:none">
|
1439 |
</th>
|
1440 |
<th>
|
1441 |
-
on page
|
1442 |
</th>
|
1443 |
</tr>
|
1444 |
<tr>
|
@@ -1451,7 +1450,7 @@
|
|
1451 |
style="display:block;border:none">
|
1452 |
</th>
|
1453 |
<th>
|
1454 |
-
on post
|
1455 |
</th>
|
1456 |
</tr>
|
1457 |
<tr>
|
@@ -1464,17 +1463,17 @@
|
|
1464 |
style="display:block;border:none">
|
1465 |
</th>
|
1466 |
<th>
|
1467 |
-
on custom post type
|
1468 |
</th>
|
1469 |
</tr>
|
1470 |
</table>
|
1471 |
</div>
|
1472 |
|
1473 |
<div class="box">
|
1474 |
-
<h2
|
1475 |
<div class="greybox" id="grad2">
|
1476 |
-
<b>Premium
|
1477 |
-
|
1478 |
</div>
|
1479 |
<br>
|
1480 |
<table style="text-align:left">
|
@@ -1488,7 +1487,7 @@
|
|
1488 |
style="display:block;border:none">
|
1489 |
</th>
|
1490 |
<th>
|
1491 |
-
color
|
1492 |
<br>
|
1493 |
<input
|
1494 |
id="fifu_input_video_color"
|
@@ -1497,21 +1496,21 @@
|
|
1497 |
value=""
|
1498 |
style="width:85px">
|
1499 |
<br>
|
1500 |
-
<input type="submit" value="OK" style="width:85px" disabled>
|
1501 |
</th>
|
1502 |
<th>
|
1503 |
-
mode
|
1504 |
<br>
|
1505 |
<select id="select_play_type" style="width:85px">
|
1506 |
-
<option value="inline"
|
1507 |
-
<option value="lightbox"
|
1508 |
</select>
|
1509 |
|
1510 |
<br>
|
1511 |
-
<input type="submit" value="OK" style="width:85px" disabled>
|
1512 |
</th>
|
1513 |
<th>
|
1514 |
-
z-index
|
1515 |
<br>
|
1516 |
<input
|
1517 |
id="fifu_form_video_zindex"
|
@@ -1520,7 +1519,7 @@
|
|
1520 |
value=""
|
1521 |
style="width:85px">
|
1522 |
<br>
|
1523 |
-
<input type="submit" value="OK" style="width:85px" disabled>
|
1524 |
</th>
|
1525 |
<th>
|
1526 |
<br>
|
@@ -1530,43 +1529,52 @@
|
|
1530 |
class="toggleoff"
|
1531 |
value=""
|
1532 |
style="display:block;border:none">
|
1533 |
-
hide from grid
|
1534 |
</th>
|
1535 |
</tr>
|
1536 |
</table>
|
1537 |
</div>
|
1538 |
|
1539 |
<div class="box">
|
1540 |
-
<h2
|
1541 |
<div class="greybox" id="grad2">
|
1542 |
-
<b>Premium
|
1543 |
-
|
1544 |
</div>
|
1545 |
<br>
|
1546 |
-
<input id="fifu_input_video_min_width" type="text" name="fifu_input_video_min_width" value="" size="4" style="width:75px">
|
1547 |
-
<input type="submit" value="Submit" disabled>
|
1548 |
</div>
|
1549 |
|
1550 |
<div class="box">
|
1551 |
-
<h2
|
1552 |
<div class="greybox" id="grad2">
|
1553 |
-
<b>Premium
|
1554 |
-
Unlike Youtube, Vimeo videos can't fit
|
1555 |
</div>
|
1556 |
<br>
|
1557 |
-
<
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1563 |
</div>
|
1564 |
|
1565 |
<div class="box">
|
1566 |
-
<h2
|
1567 |
<div class="greybox" id="grad2">
|
1568 |
-
<b>Premium
|
1569 |
-
|
1570 |
</div>
|
1571 |
<br>
|
1572 |
<table style="text-align:left">
|
@@ -1580,7 +1588,7 @@
|
|
1580 |
style="display:block;border:none">
|
1581 |
</th>
|
1582 |
<th>
|
1583 |
-
for YouTube videos
|
1584 |
</th>
|
1585 |
</tr>
|
1586 |
<tr>
|
@@ -1593,17 +1601,17 @@
|
|
1593 |
style="display:block;border:none">
|
1594 |
</th>
|
1595 |
<th>
|
1596 |
-
for Vimeo videos
|
1597 |
</th>
|
1598 |
</tr>
|
1599 |
</table>
|
1600 |
</div>
|
1601 |
|
1602 |
<div class="box">
|
1603 |
-
<h2
|
1604 |
<div class="greybox" id="grad2">
|
1605 |
-
<b>Premium
|
1606 |
-
|
1607 |
</div>
|
1608 |
<br>
|
1609 |
<table style="text-align:left">
|
@@ -1621,10 +1629,10 @@
|
|
1621 |
</div>
|
1622 |
|
1623 |
<div class="box">
|
1624 |
-
<h2
|
1625 |
<div class="greybox" id="grad2">
|
1626 |
-
<b>Premium
|
1627 |
-
|
1628 |
</div>
|
1629 |
<br>
|
1630 |
<table style="text-align:left">
|
@@ -1642,10 +1650,56 @@
|
|
1642 |
</div>
|
1643 |
|
1644 |
<div class="box">
|
1645 |
-
<h2
|
1646 |
<div class="greybox" id="grad2">
|
1647 |
-
<b>Premium
|
1648 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1649 |
</div>
|
1650 |
<br>
|
1651 |
<table style="text-align:left">
|
@@ -1658,27 +1712,30 @@
|
|
1658 |
value=""
|
1659 |
style="display:block;border:none">
|
1660 |
</th>
|
|
|
|
|
|
|
1661 |
</tr>
|
1662 |
</table>
|
1663 |
</div>
|
1664 |
|
1665 |
<div class="box">
|
1666 |
-
<h2
|
1667 |
<div class="greybox" id="grad2">
|
1668 |
-
|
1669 |
<br>
|
1670 |
<br>
|
1671 |
<input id="fifu_input_gallery_selector"
|
1672 |
type="text"
|
1673 |
name="fifu_input_gallery_selector"
|
1674 |
-
placeholder="CSS selector"
|
1675 |
-
title="CSS selector"
|
1676 |
value=""
|
1677 |
style="width:50%;min-height:24px;line-height:0;">
|
1678 |
|
1679 |
-
<input type="submit" value="Submit" disabled>
|
1680 |
|
1681 |
-
<span class="dashicons dashicons-editor-help" style="font-size: 25px;" title="In order to FIFU identify your
|
1682 |
</div>
|
1683 |
<br>
|
1684 |
<table style="text-align:left">
|
@@ -1697,10 +1754,12 @@
|
|
1697 |
</div>
|
1698 |
<div id="tabs-m">
|
1699 |
<div class="box">
|
1700 |
-
<h2
|
1701 |
<div class="greybox" id="grad2">
|
1702 |
-
<b>Premium
|
1703 |
-
|
|
|
|
|
1704 |
<table style="text-align:left">
|
1705 |
<tr>
|
1706 |
<th>
|
@@ -1713,7 +1772,7 @@
|
|
1713 |
value="" style="display:block;border:none">
|
1714 |
</th>
|
1715 |
<th>
|
1716 |
-
|
1717 |
</th>
|
1718 |
</tr>
|
1719 |
<tr>
|
@@ -1727,7 +1786,7 @@
|
|
1727 |
value="" style="display:block;border:none">
|
1728 |
</th>
|
1729 |
<th>
|
1730 |
-
fade effect
|
1731 |
</th>
|
1732 |
</tr>
|
1733 |
<tr>
|
@@ -1741,7 +1800,7 @@
|
|
1741 |
value="" style="display:block;border:none">
|
1742 |
</th>
|
1743 |
<th>
|
1744 |
-
pause autoplay on hover
|
1745 |
</th>
|
1746 |
</tr>
|
1747 |
<tr>
|
@@ -1755,7 +1814,7 @@
|
|
1755 |
value="" style="display:block;border:none">
|
1756 |
</th>
|
1757 |
<th>
|
1758 |
-
show prev/next buttons
|
1759 |
</th>
|
1760 |
</tr>
|
1761 |
<tr>
|
@@ -1769,7 +1828,7 @@
|
|
1769 |
value="" style="display:block;border:none">
|
1770 |
</th>
|
1771 |
<th>
|
1772 |
-
start
|
1773 |
</th>
|
1774 |
</tr>
|
1775 |
<tr>
|
@@ -1784,7 +1843,7 @@
|
|
1784 |
style="display:block;border:none">
|
1785 |
</th>
|
1786 |
<th>
|
1787 |
-
show gallery on click
|
1788 |
</th>
|
1789 |
</tr>
|
1790 |
<tr>
|
@@ -1795,7 +1854,7 @@
|
|
1795 |
size="4">
|
1796 |
</th>
|
1797 |
<th>
|
1798 |
-
time between each transition (in ms)
|
1799 |
</th>
|
1800 |
</tr>
|
1801 |
<tr>
|
@@ -1807,19 +1866,18 @@
|
|
1807 |
size="4">
|
1808 |
</th>
|
1809 |
<th>
|
1810 |
-
transition duration (in ms)
|
1811 |
</th>
|
1812 |
</tr>
|
1813 |
</table>
|
1814 |
-
<br>
|
1815 |
</div>
|
1816 |
</div>
|
1817 |
</div>
|
1818 |
<div id="tabs-n">
|
1819 |
<div class="box">
|
1820 |
-
<h2
|
1821 |
<div class="greybox">
|
1822 |
-
|
1823 |
</div>
|
1824 |
<br>
|
1825 |
<table style="text-align:left">
|
@@ -1848,7 +1906,7 @@
|
|
1848 |
</form>
|
1849 |
</th>
|
1850 |
<th>
|
1851 |
-
add social tags
|
1852 |
</th>
|
1853 |
</tr>
|
1854 |
<tr>
|
@@ -1876,16 +1934,16 @@
|
|
1876 |
</form>
|
1877 |
</th>
|
1878 |
<th>
|
1879 |
-
only image tags
|
1880 |
</th>
|
1881 |
</tr>
|
1882 |
</table>
|
1883 |
</div>
|
1884 |
<div class="box">
|
1885 |
-
<h2
|
1886 |
<div class="greybox" id="grad2">
|
1887 |
-
<b>Premium
|
1888 |
-
|
1889 |
</div>
|
1890 |
<br>
|
1891 |
<table style="text-align:left">
|
@@ -1899,17 +1957,17 @@
|
|
1899 |
style="display:block;border:none">
|
1900 |
</th>
|
1901 |
<th>
|
1902 |
-
width
|
1903 |
<br>
|
1904 |
<input
|
1905 |
id="fifu_input_rss_width"
|
1906 |
type="text"
|
1907 |
name="fifu_input_rss_width"
|
1908 |
value=""
|
1909 |
-
placeholder="e.g.: 600"
|
1910 |
style="width:85px">
|
1911 |
<br>
|
1912 |
-
<input type="submit" value="OK" style="width:85px" disabled>
|
1913 |
</th>
|
1914 |
</tr>
|
1915 |
</table>
|
@@ -1917,10 +1975,10 @@
|
|
1917 |
</div>
|
1918 |
<div id="tabs-i">
|
1919 |
<div class="box">
|
1920 |
-
<h2
|
1921 |
<div class="greybox">
|
1922 |
-
|
1923 |
-
<b
|
1924 |
</div>
|
1925 |
<br>
|
1926 |
<form
|
@@ -1945,42 +2003,26 @@
|
|
1945 |
</div>
|
1946 |
|
1947 |
<div class="box">
|
1948 |
-
<h2><a href="https://www.flickr.com/">Flickr</a>
|
1949 |
<div class="greybox" id="grad2">
|
1950 |
-
<b>Premium
|
1951 |
<div id="tabs-flickr">
|
1952 |
<ul>
|
1953 |
-
<li><a href="#tabs-flickr-d"
|
1954 |
-
<li><a href="#tabs-flickr-
|
1955 |
-
<li><a href="#tabs-flickr-b">How does FIFU take advantage of Flickr?</a></li>
|
1956 |
-
<li><a href="#tabs-flickr-c">Getting Flickr URL</a></li>
|
1957 |
|
1958 |
-
<div id="tabs-flickr-a">
|
1959 |
-
<br><br><br>
|
1960 |
-
- It's free;<br>
|
1961 |
-
- Offers 1000 GB of space;<br>
|
1962 |
-
- It's dedicated to store and provide images, probably faster than the most of servers;<br>
|
1963 |
-
- Creates automatic copies of your images in <b>many different sizes.</b>
|
1964 |
-
</div>
|
1965 |
-
<div id="tabs-flickr-b">
|
1966 |
-
<br><br><br>
|
1967 |
-
Smaller the images, faster your site. So the plugin will load the images from Flickr in the exactly size your site needs. And the result is...<br><br>
|
1968 |
-
The images will be shown with the <b>best quality</b> and the <b>shortest time possible</b>.
|
1969 |
-
</div>
|
1970 |
<div id="tabs-flickr-c">
|
1971 |
<br><br><br>
|
1972 |
-
You just need to get one URL (Square 75, for example). Use that
|
1973 |
<img src="https://c1.staticflickr.com/1/745/31593837206_8e081be749_z_d.jpg" style="width:100%"/>
|
1974 |
<br><br>
|
1975 |
<img src="https://c1.staticflickr.com/1/223/30820834393_f869fcff49_z_d.jpg" style="width:100%"/>
|
1976 |
</div>
|
1977 |
<div id="tabs-flickr-d">
|
1978 |
-
<br><br><br>
|
1979 |
-
You don't need to change anything here to make the images appear. However, some themes can't calculate the sufficient size that an image should have in each place, which is a waste. So if in a post, for example, a 1024px wide image is being loaded in an area that you know that is never larger than 750px wide, you could disable the option 1024, which will make your site much faster without losing quality.
|
1980 |
<br><br>
|
1981 |
<table id="thumbnail-size">
|
1982 |
<tr>
|
1983 |
-
<th
|
1984 |
<th>75</th>
|
1985 |
<th>100</th>
|
1986 |
<th>150</th>
|
@@ -1992,7 +2034,7 @@
|
|
1992 |
<th>1024</th>
|
1993 |
</tr>
|
1994 |
<tr>
|
1995 |
-
<td><center
|
1996 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-post-75"></center></td>
|
1997 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-post-100"></center></td>
|
1998 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-post-150"></center></td>
|
@@ -2004,7 +2046,7 @@
|
|
2004 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-post-1024"></center></td>
|
2005 |
</tr>
|
2006 |
<tr>
|
2007 |
-
<td><center
|
2008 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-page-75"></center></td>
|
2009 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-page-100"></center></td>
|
2010 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-page-150"></center></td>
|
@@ -2016,7 +2058,7 @@
|
|
2016 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-page-1024"></center></td>
|
2017 |
</tr>
|
2018 |
<tr>
|
2019 |
-
<td><center
|
2020 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-arch-75"></center></td>
|
2021 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-arch-100"></center></td>
|
2022 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-arch-150"></center></td>
|
@@ -2028,7 +2070,7 @@
|
|
2028 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-arch-1024"></center></td>
|
2029 |
</tr>
|
2030 |
<tr>
|
2031 |
-
<td><center
|
2032 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-cart-75"></center></td>
|
2033 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-cart-100"></center></td>
|
2034 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-cart-150"></center></td>
|
@@ -2040,7 +2082,7 @@
|
|
2040 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-cart-1024"></center></td>
|
2041 |
</tr>
|
2042 |
<tr>
|
2043 |
-
<td><center
|
2044 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-ctgr-75"></center></td>
|
2045 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-ctgr-100"></center></td>
|
2046 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-ctgr-150"></center></td>
|
@@ -2052,7 +2094,7 @@
|
|
2052 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-ctgr-1024"></center></td>
|
2053 |
</tr>
|
2054 |
<tr>
|
2055 |
-
<td><center
|
2056 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-home-75"></center></td>
|
2057 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-home-100"></center></td>
|
2058 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-home-150"></center></td>
|
@@ -2064,7 +2106,7 @@
|
|
2064 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-home-1024"></center></td>
|
2065 |
</tr>
|
2066 |
<tr>
|
2067 |
-
<td><center
|
2068 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-prod-75"></center></td>
|
2069 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-prod-100"></center></td>
|
2070 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-prod-150"></center></td>
|
@@ -2076,7 +2118,7 @@
|
|
2076 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-prod-1024"></center></td>
|
2077 |
</tr>
|
2078 |
<tr>
|
2079 |
-
<td><center
|
2080 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-shop-75"></center></td>
|
2081 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-shop-100"></center></td>
|
2082 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-shop-150"></center></td>
|
@@ -2097,21 +2139,21 @@
|
|
2097 |
<div id="tabs-q">
|
2098 |
<div class="box">
|
2099 |
|
2100 |
-
<h2
|
2101 |
|
2102 |
<div class="greybox" id="grad2">
|
2103 |
-
<b>Premium
|
2104 |
<div id="tabsApi">
|
2105 |
<ul>
|
2106 |
-
<li><a href="#tabs-1"
|
2107 |
-
<li><a href="#tabs-2"
|
2108 |
-
<li><a href="#tabs-3"
|
2109 |
-
<li><a href="#tabs-6"
|
2110 |
-
<li><a href="#tabs-7"
|
2111 |
-
<li><a href="#tabs-4"
|
2112 |
-
<li><a href="#tabs-8"
|
2113 |
-
<li><a href="#tabs-5"
|
2114 |
-
<li><a href="#tabs-9"
|
2115 |
</ul>
|
2116 |
<div id="tabs-1">
|
2117 |
<table style="text-align:left">
|
@@ -2123,37 +2165,37 @@
|
|
2123 |
</th>
|
2124 |
</tr>
|
2125 |
<tr>
|
2126 |
-
<th
|
2127 |
<th>
|
2128 |
/wp-json/wc/v3/products
|
2129 |
</th>
|
2130 |
</tr>
|
2131 |
<tr>
|
2132 |
-
<th
|
2133 |
<th>
|
2134 |
/wp-json/wc/v3/products/categories
|
2135 |
</th>
|
2136 |
</tr>
|
2137 |
<tr>
|
2138 |
-
<th
|
2139 |
<th>
|
2140 |
/wp-json/wc/v3/products/{id}/variations/
|
2141 |
</th>
|
2142 |
</tr>
|
2143 |
<tr>
|
2144 |
-
<th
|
2145 |
<th>
|
2146 |
/wp-json/wc/v3/products/batch
|
2147 |
</th>
|
2148 |
</tr>
|
2149 |
<tr>
|
2150 |
-
<th
|
2151 |
<th>
|
2152 |
/wp-json/wp/v2/posts
|
2153 |
</th>
|
2154 |
</tr>
|
2155 |
<tr>
|
2156 |
-
<th
|
2157 |
<th>
|
2158 |
/wp-json/wp/v2/{post_type}
|
2159 |
</th>
|
@@ -2170,31 +2212,31 @@
|
|
2170 |
</th>
|
2171 |
</tr>
|
2172 |
<tr>
|
2173 |
-
<th
|
2174 |
<th>
|
2175 |
/wp-json/wc/v3/products/{id}
|
2176 |
</th>
|
2177 |
</tr>
|
2178 |
<tr>
|
2179 |
-
<th
|
2180 |
<th>
|
2181 |
/wp-json/wc/v3/products/categories/{id}
|
2182 |
</th>
|
2183 |
</tr>
|
2184 |
<tr>
|
2185 |
-
<th
|
2186 |
<th>
|
2187 |
/wp-json/wc/v3/products/{id}/variations/{variation_id}
|
2188 |
</th>
|
2189 |
</tr>
|
2190 |
<tr>
|
2191 |
-
<th
|
2192 |
<th>
|
2193 |
/wp-json/wp/v2/posts/{id}
|
2194 |
</th>
|
2195 |
</tr>
|
2196 |
<tr>
|
2197 |
-
<th
|
2198 |
<th>
|
2199 |
/wp-json/wp/v2/{post_type}/{id}
|
2200 |
</th>
|
@@ -2207,12 +2249,12 @@
|
|
2207 |
<tr>
|
2208 |
<th></th>
|
2209 |
<th>
|
2210 |
-
Key
|
2211 |
</th>
|
2212 |
</tr>
|
2213 |
<tr>
|
2214 |
<th>
|
2215 |
-
Image
|
2216 |
</th>
|
2217 |
<th>
|
2218 |
fifu_image_url
|
@@ -2220,7 +2262,7 @@
|
|
2220 |
</tr>
|
2221 |
<tr>
|
2222 |
<th>
|
2223 |
-
Image
|
2224 |
</th>
|
2225 |
<th>
|
2226 |
fifu_image_alt
|
@@ -2228,7 +2270,7 @@
|
|
2228 |
</tr>
|
2229 |
<tr>
|
2230 |
<th>
|
2231 |
-
Product Image + Gallery (URLs delimited by "|")
|
2232 |
</th>
|
2233 |
<th>
|
2234 |
fifu_list_url
|
@@ -2236,7 +2278,7 @@
|
|
2236 |
</tr>
|
2237 |
<tr>
|
2238 |
<th>
|
2239 |
-
Product Image
|
2240 |
</th>
|
2241 |
<th>
|
2242 |
fifu_list_alt
|
@@ -2244,7 +2286,7 @@
|
|
2244 |
</tr>
|
2245 |
<tr>
|
2246 |
<th>
|
2247 |
-
Video
|
2248 |
</th>
|
2249 |
<th>
|
2250 |
fifu_video_url
|
@@ -2252,15 +2294,15 @@
|
|
2252 |
</tr>
|
2253 |
<tr>
|
2254 |
<th>
|
2255 |
-
Video Gallery
|
2256 |
</th>
|
2257 |
<th>
|
2258 |
-
|
2259 |
</th>
|
2260 |
</tr>
|
2261 |
<tr>
|
2262 |
<th>
|
2263 |
-
Slider
|
2264 |
</th>
|
2265 |
<th>
|
2266 |
fifu_slider_list_url
|
@@ -2319,7 +2361,7 @@
|
|
2319 |
1)
|
2320 |
</th>
|
2321 |
<th>
|
2322 |
-
<a href="https://developer.wordpress.org/rest-api/reference/"
|
2323 |
</th>
|
2324 |
</tr>
|
2325 |
<tr>
|
@@ -2327,7 +2369,7 @@
|
|
2327 |
2)
|
2328 |
</th>
|
2329 |
<th>
|
2330 |
-
<a href="https://woocommerce.github.io/woocommerce-rest-api-docs/?php#introduction"
|
2331 |
</th>
|
2332 |
</tr>
|
2333 |
</table>
|
@@ -2343,9 +2385,9 @@
|
|
2343 |
</div>
|
2344 |
<div id="tabs-o">
|
2345 |
<div class="box">
|
2346 |
-
<h2
|
2347 |
<div class="greybox">
|
2348 |
-
|
2349 |
</div>
|
2350 |
<br>
|
2351 |
<table style="text-align:left">
|
@@ -2373,7 +2415,7 @@
|
|
2373 |
</form>
|
2374 |
</th>
|
2375 |
<th>
|
2376 |
-
lightbox
|
2377 |
</th>
|
2378 |
</tr>
|
2379 |
<tr>
|
@@ -2400,7 +2442,7 @@
|
|
2400 |
</form>
|
2401 |
</th>
|
2402 |
<th>
|
2403 |
-
zoom
|
2404 |
</th>
|
2405 |
</tr>
|
2406 |
</table>
|
@@ -2408,10 +2450,10 @@
|
|
2408 |
|
2409 |
<a name="category"></a>
|
2410 |
<div class="box">
|
2411 |
-
<h2
|
2412 |
<div class="greybox" id="grad2">
|
2413 |
-
<b>Premium
|
2414 |
-
|
2415 |
</div>
|
2416 |
<br>
|
2417 |
<table style="text-align:left">
|
@@ -2424,17 +2466,14 @@
|
|
2424 |
value=""
|
2425 |
style="display:block;border:none">
|
2426 |
</th>
|
2427 |
-
<th>
|
2428 |
-
set category images
|
2429 |
-
</th>
|
2430 |
</tr>
|
2431 |
</table>
|
2432 |
</div>
|
2433 |
|
2434 |
<div class="box">
|
2435 |
-
<h2
|
2436 |
<div class="greybox">
|
2437 |
-
|
2438 |
</div>
|
2439 |
<br>
|
2440 |
<table style="text-align:left">
|
@@ -2461,9 +2500,6 @@
|
|
2461 |
value="" >
|
2462 |
</form>
|
2463 |
</th>
|
2464 |
-
<th>
|
2465 |
-
show category image on product grid
|
2466 |
-
</th>
|
2467 |
</tr>
|
2468 |
</table>
|
2469 |
</div>
|
@@ -2471,13 +2507,13 @@
|
|
2471 |
<a name="variable"></a>
|
2472 |
|
2473 |
<div class="box">
|
2474 |
-
<h2
|
2475 |
<div class="greybox" id="grad2">
|
2476 |
-
<b>Premium
|
2477 |
-
|
2478 |
<br>
|
2479 |
<br>
|
2480 |
-
Important: variation image gallery requires <a href="https://woocommerce.com/products/woocommerce-additional-variation-images/" target="_blank">WooCommerce Additional Variation Images</a
|
2481 |
</div>
|
2482 |
<br>
|
2483 |
<table style="text-align:left">
|
@@ -2494,25 +2530,22 @@
|
|
2494 |
style="display:block;border:none" >
|
2495 |
</form>
|
2496 |
</th>
|
2497 |
-
<th>
|
2498 |
-
allows to use external images and galleries of external images in product variations
|
2499 |
-
</th>
|
2500 |
</tr>
|
2501 |
</table>
|
2502 |
</div>
|
2503 |
|
2504 |
<div class="box">
|
2505 |
-
<h2
|
2506 |
<div class="greybox">
|
2507 |
-
|
2508 |
<br/>
|
2509 |
<br/>
|
2510 |
|
2511 |
<div id="tabsWooImport">
|
2512 |
<ul>
|
2513 |
-
<li><a href="#tabs-3"
|
2514 |
-
<li><a href="#tabs-1"
|
2515 |
-
<li><a href="#tabs-2"
|
2516 |
</ul>
|
2517 |
<div id="tabs-1">
|
2518 |
|
@@ -2521,12 +2554,12 @@
|
|
2521 |
<th>
|
2522 |
</th>
|
2523 |
<th>
|
2524 |
-
Key
|
2525 |
</th>
|
2526 |
</tr>
|
2527 |
<tr>
|
2528 |
<th>
|
2529 |
-
Image
|
2530 |
</th>
|
2531 |
<th>
|
2532 |
fifu_image_url
|
@@ -2534,7 +2567,7 @@
|
|
2534 |
</tr>
|
2535 |
<tr>
|
2536 |
<th>
|
2537 |
-
Alt
|
2538 |
</th>
|
2539 |
<th>
|
2540 |
fifu_image_alt
|
@@ -2551,12 +2584,12 @@
|
|
2551 |
<th>
|
2552 |
</th>
|
2553 |
<th>
|
2554 |
-
Key
|
2555 |
</th>
|
2556 |
</tr>
|
2557 |
<tr>
|
2558 |
<th>
|
2559 |
-
Image
|
2560 |
</th>
|
2561 |
<th>
|
2562 |
fifu_image_url
|
@@ -2564,7 +2597,7 @@
|
|
2564 |
</tr>
|
2565 |
<tr>
|
2566 |
<th>
|
2567 |
-
Alt
|
2568 |
</th>
|
2569 |
<th>
|
2570 |
fifu_image_alt
|
@@ -2572,7 +2605,7 @@
|
|
2572 |
</tr>
|
2573 |
<tr>
|
2574 |
<th>
|
2575 |
-
Video
|
2576 |
</th>
|
2577 |
<th>
|
2578 |
fifu_video_url
|
@@ -2580,7 +2613,7 @@
|
|
2580 |
</tr>
|
2581 |
<tr>
|
2582 |
<th>
|
2583 |
-
Image + Image Gallery (URLs delimited by "|")
|
2584 |
</th>
|
2585 |
<th>
|
2586 |
fifu_list_url
|
@@ -2588,7 +2621,7 @@
|
|
2588 |
</tr>
|
2589 |
<tr>
|
2590 |
<th>
|
2591 |
-
|
2592 |
</th>
|
2593 |
<th>
|
2594 |
fifu_list_alt
|
@@ -2596,7 +2629,7 @@
|
|
2596 |
</tr>
|
2597 |
<tr>
|
2598 |
<th>
|
2599 |
-
Video + Video Gallery (URLs delimited by "|")
|
2600 |
</th>
|
2601 |
<th>
|
2602 |
fifu_list_video_url
|
@@ -2604,7 +2637,7 @@
|
|
2604 |
</tr>
|
2605 |
<tr>
|
2606 |
<th>
|
2607 |
-
Slider (URLs delimited by "|")
|
2608 |
</th>
|
2609 |
<th>
|
2610 |
fifu_slider_list_url
|
@@ -2614,7 +2647,7 @@
|
|
2614 |
</div>
|
2615 |
|
2616 |
<div id="tabs-3">
|
2617 |
-
<a href="<?php echo plugins_url()?>/featured-image-from-url/admin/html/txt/csv-woo.txt"
|
2618 |
<br>
|
2619 |
<br>
|
2620 |
<center><img src="https://c1.staticflickr.com/1/216/31480097476_bf4915184b_o_d.jpg" style="width:90%"></center>
|
@@ -2625,17 +2658,17 @@
|
|
2625 |
</div>
|
2626 |
<div id="tabs-p">
|
2627 |
<div class="box">
|
2628 |
-
<h2
|
2629 |
<div class="greybox">
|
2630 |
-
|
2631 |
<br/>
|
2632 |
<br/>
|
2633 |
<div id="tabsWpAllImport">
|
2634 |
<ul>
|
2635 |
-
<li><a href="#tabs-
|
2636 |
-
<li><a href="#tabs-1"
|
2637 |
-
<li><a href="#tabs-
|
2638 |
-
<li><a href="#tabs-4"
|
2639 |
</ul>
|
2640 |
<div id="tabs-1">
|
2641 |
|
@@ -2644,12 +2677,12 @@
|
|
2644 |
<th>
|
2645 |
</th>
|
2646 |
<th>
|
2647 |
-
Key
|
2648 |
</th>
|
2649 |
</tr>
|
2650 |
<tr>
|
2651 |
<th>
|
2652 |
-
Featured Image URL
|
2653 |
</th>
|
2654 |
<th>
|
2655 |
fifu_image_url
|
@@ -2657,7 +2690,7 @@
|
|
2657 |
</tr>
|
2658 |
<tr>
|
2659 |
<th>
|
2660 |
-
Featured Image
|
2661 |
</th>
|
2662 |
<th>
|
2663 |
fifu_image_alt
|
@@ -2668,18 +2701,18 @@
|
|
2668 |
<br/>
|
2669 |
</div>
|
2670 |
|
2671 |
-
<div id="tabs-
|
2672 |
<table style="text-align:left">
|
2673 |
<tr>
|
2674 |
<th>
|
2675 |
</th>
|
2676 |
<th>
|
2677 |
-
Key
|
2678 |
</th>
|
2679 |
</tr>
|
2680 |
<tr>
|
2681 |
<th>
|
2682 |
-
Featured Video URL
|
2683 |
</th>
|
2684 |
<th>
|
2685 |
fifu_video_url
|
@@ -2687,7 +2720,7 @@
|
|
2687 |
</tr>
|
2688 |
<tr>
|
2689 |
<th>
|
2690 |
-
Featured Image URL +
|
2691 |
</th>
|
2692 |
<th>
|
2693 |
fifu_list_url
|
@@ -2695,7 +2728,7 @@
|
|
2695 |
</tr>
|
2696 |
<tr>
|
2697 |
<th>
|
2698 |
-
Featured Image
|
2699 |
</th>
|
2700 |
<th>
|
2701 |
fifu_list_alt
|
@@ -2703,7 +2736,7 @@
|
|
2703 |
</tr>
|
2704 |
<tr>
|
2705 |
<th>
|
2706 |
-
Featured Video URL +
|
2707 |
</th>
|
2708 |
<th>
|
2709 |
fifu_list_video_url
|
@@ -2711,7 +2744,7 @@
|
|
2711 |
</tr>
|
2712 |
<tr>
|
2713 |
<th>
|
2714 |
-
Featured Slider URLs (
|
2715 |
</th>
|
2716 |
<th>
|
2717 |
fifu_slider_list_url
|
@@ -2728,20 +2761,20 @@
|
|
2728 |
1)
|
2729 |
</th>
|
2730 |
<th>
|
2731 |
-
<a href="http://www.wpallimport.com/documentation/woocommerce/variable-products/"
|
2732 |
</th>
|
2733 |
</tr>
|
2734 |
</table>
|
2735 |
</div>
|
2736 |
|
2737 |
-
<div id="tabs-
|
2738 |
-
<a href="<?php echo plugins_url()?>/featured-image-from-url/admin/html/txt/csv.txt"
|
2739 |
<br>
|
2740 |
<br>
|
2741 |
<img src="https://storage.googleapis.com/featuredimagefromurl/wp-all-import-addon.jpg" style="width:100%">
|
2742 |
<br>
|
2743 |
<br>
|
2744 |
-
<h3
|
2745 |
<br>
|
2746 |
<img src="https://storage.googleapis.com/featuredimagefromurl/wp-all-import-result.jpg">
|
2747 |
</div>
|
@@ -2751,9 +2784,9 @@
|
|
2751 |
</div>
|
2752 |
<div id="tabs-d">
|
2753 |
<div class="box">
|
2754 |
-
<h2
|
2755 |
<div class="greybox">
|
2756 |
-
If you need help, you can refer to
|
2757 |
<br>
|
2758 |
<br>
|
2759 |
<table style="background-color: #fff; border-radius: 13px;">
|
@@ -2770,27 +2803,27 @@
|
|
2770 |
</tr>
|
2771 |
<tr>
|
2772 |
<td style="width:33%;text-align:center;border-bottom: 1px solid #ddd !important">
|
2773 |
-
<i
|
2774 |
</td>
|
2775 |
<td style="width:33%;text-align:center;border-bottom: 1px solid #ddd !important">
|
2776 |
-
<i
|
2777 |
</td>
|
2778 |
<td style="width:33%;text-align:center;border-bottom: 1px solid #ddd !important">
|
2779 |
-
<i
|
2780 |
</td>
|
2781 |
</tr>
|
2782 |
<tr>
|
2783 |
<td style="vertical-align: top;">
|
2784 |
-
You were probably using a deprecated feature. Just do it:
|
2785 |
-
1) access Metadata tab;
|
2786 |
-
2) enable Clean Metadata (it will be automatically disabled when finished);
|
2787 |
-
3) enable Image Metadata.
|
2788 |
</td>
|
2789 |
<td style="vertical-align: top;">
|
2790 |
-
Just send me an email. If you are available to discuss the details and the plugin is free and has more than 50,000 active installs, I should provide an integration very soon.
|
2791 |
</td>
|
2792 |
<td>
|
2793 |
-
You can set
|
2794 |
</td>
|
2795 |
</tr>
|
2796 |
</table>
|
@@ -2804,49 +2837,43 @@
|
|
2804 |
</div>
|
2805 |
</div>
|
2806 |
<div class="box">
|
2807 |
-
<h2
|
2808 |
<div class="greybox" style="min-height:375px;padding:0 !important">
|
2809 |
<div style="width:100%">
|
2810 |
<hgroup style="float:left;opacity:0.75;" class="speech-bubble">
|
2811 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px;padding-top:10px;"
|
2812 |
<br>
|
2813 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px"
|
2814 |
<br>
|
2815 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px"
|
2816 |
<br>
|
2817 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"
|
2818 |
<br>
|
2819 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"
|
2820 |
<br>
|
2821 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"
|
2822 |
<br>
|
2823 |
</hgroup>
|
2824 |
-
<img style="float:right;padding-left:1%;width:17%;position:relative;top:19px;filter:grayscale(25%);" src="https://ps.w.org/featured-image-from-url/assets/icon-256x256.png" title="Right click me!">
|
2825 |
</div>
|
2826 |
<hgroup style="float:right;opacity:0.75" class="speech-bubble2">
|
2827 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px;padding-top:10px;"
|
2828 |
<br>
|
2829 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px"
|
2830 |
<br>
|
2831 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"
|
2832 |
<br>
|
2833 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"
|
2834 |
<br>
|
2835 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"
|
2836 |
<br>
|
2837 |
-
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px"
|
2838 |
<br>
|
2839 |
</hgroup>
|
2840 |
</div>
|
2841 |
</div>
|
2842 |
</div>
|
2843 |
<div id="tabs-t">
|
2844 |
-
<div class="box">
|
2845 |
-
<h2>Troubleshooting</h2>
|
2846 |
-
<div class="greybox">
|
2847 |
-
From September 2019, always you guys report an issue between FIFU and another plugin or theme, the solution will be posted here.
|
2848 |
-
</div>
|
2849 |
-
</div>
|
2850 |
<div class="box">
|
2851 |
<table>
|
2852 |
<tr>
|
2 |
|
3 |
<div class="header-box">
|
4 |
<h1 style="color:white;padding-left:20px"><span class="dashicons dashicons-camera" style="font-size:30px"></span><span style="padding-left:20px">featured image from url 3</span></h1>
|
5 |
+
<a href="https://chrome.google.com/webstore/detail/fifu-scraper/pccimcccbkdeeadhejdmnffmllpicola" target="_blank"><img class="fifu-chrome" src="https://storage.googleapis.com/featuredimagefromurl/chrome-web-store2.png" title="<?php esc_html_e('Chrome Extension Available', 'featured-image-from-url'); ?>"/></a>
|
6 |
</div>
|
7 |
|
8 |
<div id="tabs-top" style="float:left">
|
9 |
<ul>
|
10 |
+
<li><a href="#tabs-d"><i class="fas fa-envelope"></i> <?php esc_html_e('Help', 'featured-image-from-url'); ?></a></li>
|
11 |
+
<li><a href="#tabs-k"><i class="fas fa-user-cog"></i> <?php esc_html_e('Admin', 'featured-image-from-url'); ?></a></li>
|
12 |
+
<li><a href="#tabs-g"><i class="fas fa-image"></i> <?php esc_html_e('Featured Image', 'featured-image-from-url'); ?></a></li>
|
13 |
+
<li><a href="#tabs-b"><i class="fas fa-flag-checkered"></i> <?php esc_html_e('URL from Post Content', 'featured-image-from-url'); ?></a></li>
|
14 |
+
<li><a href="#tabs-j"><i class="fas fa-database"></i> <?php esc_html_e('Metadata', 'featured-image-from-url'); ?></a></li>
|
15 |
+
<li><a href="#tabs-i"><i class="fas fa-tachometer-alt"></i> <?php esc_html_e('Performance', 'featured-image-from-url'); ?></a></li>
|
16 |
+
<li><a href="#tabs-q"><i class="fas fa-robot"></i> <?php esc_html_e('REST API', 'featured-image-from-url'); ?></a></li>
|
17 |
+
<li><a href="#tabs-l"><i class="fas fa-code"></i> <?php esc_html_e('Shortcode') ?></a></li>
|
18 |
+
<li><a href="#tabs-m"><i class="fas fa-images"></i> <?php esc_html_e('Slider', 'featured-image-from-url'); ?></a></li>
|
19 |
+
<li><a href="#tabs-n"><i class="fas fa-share-alt"></i> <?php esc_html_e('Social', 'featured-image-from-url'); ?></a></li>
|
20 |
+
<li><a href="#tabs-e"><i class="fas fa-quote-left"></i> <?php esc_html_e('Text', 'featured-image-from-url'); ?></a></li>
|
21 |
+
<li><a href="#tabs-c"><i class="fas fa-play"></i> <?php esc_html_e('Video', 'featured-image-from-url'); ?></a></li>
|
22 |
+
<li><a href="#tabs-o"><i class="fas fa-shopping-cart"></i> <?php esc_html_e('WooCommerce', 'featured-image-from-url'); ?></a></li>
|
23 |
+
<li><a href="#tabs-p"><i class="fas fa-redo"></i> <?php esc_html_e('WP All Import', 'featured-image-from-url'); ?></a></li>
|
24 |
+
<li><a href="#tabs-t"><i class="fas fa-info-circle"></i> <?php esc_html_e('Troubleshooting', 'featured-image-from-url'); ?></a></li>
|
25 |
<li><a href="#tabs-a"><i class="fas fa-star"></i> Premium <b style="border-radius:2px;padding:3px;background-color:#32373c;color:white">$ 39.90</b></a></li>
|
26 |
<br>
|
27 |
<br>
|
28 |
<div id="tabs-a">
|
29 |
<a name="top"></a>
|
30 |
<div class="box">
|
31 |
+
<h2><?php esc_html_e('Feature of the month', 'featured-image-from-url'); ?></h2>
|
32 |
<div class="greybox">
|
33 |
<table>
|
34 |
<tr>
|
35 |
+
<td style="border-bottom:none;text-align:right;"><?php esc_html_e('June') ?></td>
|
36 |
+
<td style="border-bottom:none"><?php esc_html_e('Giphy Search', 'featured-image-from-url'); ?></td>
|
37 |
</tr>
|
38 |
<tr>
|
39 |
+
<td style="border-bottom:none;text-align:right;"><?php esc_html_e('May') ?></td>
|
40 |
+
<td style="border-bottom:none"><?php esc_html_e('Media RSS Tags', 'featured-image-from-url'); ?></td>
|
41 |
</tr>
|
42 |
<tr>
|
43 |
+
<td style="border-bottom:none;text-align:right;"><?php esc_html_e('April') ?></td>
|
44 |
+
<td style="border-bottom:none"><?php esc_html_e('embedded video can be replaced by its thumbnail + play button (drastically decreases the loading time)', 'featured-image-from-url'); ?></td>
|
45 |
</tr>
|
46 |
<tr>
|
47 |
+
<td style="border-bottom:none;text-align:right;"><?php esc_html_e('March') ?></td>
|
48 |
+
<td style="border-bottom:none"><?php esc_html_e('Google Chrome Extension for FIFU', 'featured-image-from-url'); ?></td>
|
49 |
</tr>
|
50 |
<tr>
|
51 |
+
<td style="border-bottom:none;text-align:right;"><?php esc_html_e('February') ?></td>
|
52 |
+
<td style="border-bottom:none"><?php esc_html_e('support to private videos from Vimeo', 'featured-image-from-url'); ?></td>
|
53 |
</tr>
|
54 |
<tr>
|
55 |
+
<td style="border-bottom:none;text-align:right;"><?php esc_html_e('January') ?></td>
|
56 |
+
<td style="border-bottom:none"><?php esc_html_e('integration with WooCoomerce Additional Variation Images plugin', 'featured-image-from-url'); ?></td>
|
57 |
</tr>
|
58 |
</table>
|
59 |
</div>
|
60 |
</div>
|
61 |
<div class="box">
|
62 |
+
<h2><a href="https://fifu.app/">Featured Image from URL Premium</a></h2>
|
63 |
<iframe style="width:100%;height:600px" src="https://fifu.app/"></iframe>
|
64 |
</div>
|
65 |
</div>
|
66 |
|
67 |
<div id="tabs-k">
|
68 |
<div class="box">
|
69 |
+
<h2><?php esc_html_e('Featured Image Column', 'featured-image-from-url'); ?></h2>
|
70 |
<div class="greybox">
|
71 |
+
<?php esc_html_e('The plugin adds a new column to your post list. Below you can choose the height (px) of the image in the column. To disable that, just uncheck "FIFU" in the Screen Options.', 'featured-image-from-url'); ?>
|
72 |
</div>
|
73 |
<br>
|
74 |
<form
|
75 |
id="fifu_form_column"
|
76 |
action="javascript:void(0)"
|
77 |
method="post">
|
78 |
+
<input id="fifu_input_column_height" type="text" name="fifu_input_column_height" value="<?php echo $column_height; ?>" placeholder="<?php esc_html_e('e.g.: 64', 'featured-image-from-url'); ?>" size="4">
|
79 |
+
<input type="submit" value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" >
|
80 |
</form>
|
81 |
</div>
|
82 |
|
83 |
<div class="box">
|
84 |
+
<h2><?php esc_html_e('Gallery Fields', 'featured-image-from-url'); ?></h2>
|
85 |
<div class="greybox" id="grad2">
|
86 |
+
<b>Premium</b><br><br>
|
87 |
+
<?php esc_html_e('Choose the number of fields you have in the post editor.', 'featured-image-from-url'); ?><br><br>
|
88 |
<table style="text-align:left">
|
89 |
<tr>
|
90 |
<th>
|
91 |
<label for="fifu_input_spinner_image"
|
92 |
+
placehold><?php esc_html_e('Image Gallery:', 'featured-image-from-url'); ?></label>
|
93 |
</th>
|
94 |
<th>
|
95 |
<input id="fifu_input_spinner_image"
|
99 |
</tr>
|
100 |
<tr>
|
101 |
<th>
|
102 |
+
<label for="fifu_input_spinner_video"><?php esc_html_e('Video Gallery:', 'featured-image-from-url'); ?></label>
|
103 |
</th>
|
104 |
<th>
|
105 |
<input id="fifu_input_spinner_video"
|
109 |
</tr>
|
110 |
<tr>
|
111 |
<th>
|
112 |
+
<label for="fifu_input_spinner_slider"><?php esc_html_e('Slider:', 'featured-image-from-url'); ?></label>
|
113 |
</th>
|
114 |
<th>
|
115 |
<input id="fifu_input_spinner_slider"
|
120 |
</table>
|
121 |
</div>
|
122 |
<br>
|
123 |
+
<input type="submit" value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
124 |
</div>
|
125 |
<div class="box">
|
126 |
+
<h2><?php esc_html_e('Database', 'featured-image-from-url'); ?></h2>
|
127 |
<div class="greybox">
|
128 |
+
<?php esc_html_e('Limit of rows to UPDATE, INSERT or DELETE by query. Higher this number, faster the features URL from Post Content > All Posts, Image Metadata and Clean Metadata. However, if you have too limited resources, don\'t increase this value too much, otherwise your database can bring down.', 'featured-image-from-url'); ?><br><br>
|
129 |
<form
|
130 |
id="fifu_form_db"
|
131 |
action="javascript:void(0)"
|
135 |
<tr>
|
136 |
<th>
|
137 |
<label for="fifu_input_spinner_db"
|
138 |
+
placehold><?php esc_html_e('Rows Limit', 'featured-image-from-url'); ?></label>
|
139 |
</th>
|
140 |
<th>
|
141 |
<input id="fifu_input_spinner_db"
|
144 |
size="4">
|
145 |
</th>
|
146 |
<th>
|
147 |
+
<input type="submit" value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>">
|
148 |
</th>
|
149 |
</tr>
|
150 |
</table>
|
152 |
</div>
|
153 |
</div>
|
154 |
<div class="box">
|
155 |
+
<h2><?php esc_html_e('Schedule Metadata Generation', 'featured-image-from-url'); ?></h2>
|
156 |
<div class="greybox" id="grad2">
|
157 |
+
<b>Premium</b><br><br>
|
158 |
+
<?php esc_html_e('If you are setting the image URLs in a nonstandard way, the images probably won\'t be shown at front-end because some extra metadata is required. Here you can schedule an event to run each N minutes and check if there is some image URL without metadata and create that. The FIFU keys are listed on WP All Import > Custom Fields.', 'featured-image-from-url'); ?><br><br>
|
159 |
<table style="text-align:left">
|
160 |
<tr>
|
161 |
<th>
|
162 |
<label for="fifu_input_spinner_cron_metadata"
|
163 |
+
placehold><?php esc_html_e('Interval (minutes)', 'featured-image-from-url'); ?></label>
|
164 |
</th>
|
165 |
<th>
|
166 |
<input id="fifu_input_spinner_cron_metadata"
|
168 |
size="4">
|
169 |
</th>
|
170 |
<th>
|
171 |
+
<input type="submit" value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
172 |
</th>
|
173 |
</tr>
|
174 |
</table>
|
182 |
style="display:block;border:none">
|
183 |
</div>
|
184 |
<div class="box">
|
185 |
+
<h2><?php esc_html_e('Media Library', 'featured-image-from-url'); ?></h2>
|
186 |
<div class="greybox">
|
187 |
+
<?php esc_html_e('Show the external images in your media library.', 'featured-image-from-url'); ?>
|
188 |
</div>
|
189 |
<br>
|
190 |
<form
|
215 |
</form>
|
216 |
</div>
|
217 |
<div class="box">
|
218 |
+
<h2><?php esc_html_e('jQuery', 'featured-image-from-url'); ?></h2>
|
219 |
<div class="greybox">
|
220 |
+
<?php esc_html_e('If for some reason jQuery is missing from your site, which is not commom, you can import that from a CDN.', 'featured-image-from-url'); ?>
|
221 |
</div>
|
222 |
<br>
|
223 |
<form
|
241 |
id="fifu_input_jquery"
|
242 |
name="fifu_input_jquery"
|
243 |
value="" ></td>
|
244 |
+
<td><?php esc_html_e('import jQuery from a CDN', 'featured-image-from-url'); ?></td>
|
245 |
</tr>
|
246 |
</table>
|
247 |
</form>
|
248 |
</div>
|
249 |
<div class="box">
|
250 |
+
<h2><?php esc_html_e('URL Parameters', 'featured-image-from-url'); ?></h2>
|
251 |
<div class="greybox">
|
252 |
+
<?php esc_html_e('Add some FIFU parameters to your image URLs. It only makes sense when you have a theme (or plugin) that calls the image URLs in a nonstandard way, what could break some FIFU features, such as Video, Slider, Shortcode, Add Class, Lazy Load and Same Height > Object Fit.', 'featured-image-from-url'); ?>
|
253 |
</div>
|
254 |
<br>
|
255 |
<form
|
276 |
<div id="tabs-b">
|
277 |
<div class="box">
|
278 |
|
279 |
+
<h2><?php esc_html_e('Configuration', 'featured-image-from-url'); ?></h2>
|
280 |
<div class="greybox">
|
281 |
+
<?php esc_html_e('It reads the HTML of your post and use the 1st image (or video) URL found as Featured Image. It happens when you click on Publish (or Update) button.', 'featured-image-from-url'); ?><br/><br/>
|
282 |
+
<b><?php esc_html_e('Important:', 'featured-image-from-url'); ?></b> <?php esc_html_e('the images need to be in an "img" HTML tag and videos in an "iframe" tag. Contents provided by [shortcode] can\'t be read.', 'featured-image-from-url'); ?>
|
283 |
</div>
|
284 |
|
285 |
<br>
|
297 |
size="3"
|
298 |
style="width:40px">
|
299 |
<br>
|
300 |
+
<input type="submit" value="<?php esc_html_e('OK', 'featured-image-from-url'); ?>" style="width:72px">
|
301 |
</form>
|
302 |
</th>
|
303 |
<th>
|
304 |
+
<?php esc_html_e('image (or video) position', 'featured-image-from-url'); ?>
|
305 |
</th>
|
306 |
</tr>
|
307 |
<tr>
|
327 |
</form>
|
328 |
</th>
|
329 |
<th>
|
330 |
+
<?php esc_html_e('use the 1st (or nth) image (or video) as Featured Image', 'featured-image-from-url'); ?>
|
331 |
</th>
|
332 |
</tr>
|
333 |
<tr>
|
353 |
</form>
|
354 |
</th>
|
355 |
<th>
|
356 |
+
<?php esc_html_e('hide the 1st (or nth) image (or video) from content', 'featured-image-from-url'); ?>
|
357 |
</th>
|
358 |
</tr>
|
359 |
<tr>
|
380 |
</form>
|
381 |
</th>
|
382 |
<th>
|
383 |
+
<?php esc_html_e('remove query strings (whatever follows the question mark sign "?")', 'featured-image-from-url'); ?>
|
384 |
</th>
|
385 |
</tr>
|
386 |
<tr>
|
406 |
</form>
|
407 |
</th>
|
408 |
<th>
|
409 |
+
<?php esc_html_e('overwrite the existing Featured Image (or video)', 'featured-image-from-url'); ?>
|
410 |
</th>
|
411 |
</tr>
|
412 |
</table>
|
413 |
</div>
|
414 |
<div class="box">
|
415 |
+
<h2><?php esc_html_e('All Posts', 'featured-image-from-url'); ?></h2>
|
416 |
<div class="greybox" id="grad2">
|
417 |
+
<b>Premium</b><br><br>
|
418 |
+
<?php esc_html_e('Update all your posts applying the configuration above. ', 'featured-image-from-url'); ?>
|
419 |
+
<?php esc_html_e('It can take some minutes and can\'t be undone, so make a backup.', 'featured-image-from-url'); ?>
|
420 |
+
<?php esc_html_e('To repeat the process enable the toggle again.', 'featured-image-from-url'); ?>
|
|
|
421 |
<br><br>
|
422 |
+
<?php esc_html_e('To schedule this process (hourly, daily etc), you can use the hook fifu_event with your favorite cron event plugin. Suggestion:', 'featured-image-from-url'); ?> <a href="https://wordpress.org/plugins/wp-crontrol/">WP Crontrol</a>.
|
423 |
</div>
|
424 |
<br>
|
425 |
<table style="text-align:left">
|
433 |
style="display:block;border:none">
|
434 |
</th>
|
435 |
<th>
|
436 |
+
<?php esc_html_e('ignore posts that already have a Featured Image (or video)', 'featured-image-from-url'); ?>
|
437 |
</th>
|
438 |
</tr>
|
439 |
<tr>
|
446 |
style="display:block;border:none">
|
447 |
</th>
|
448 |
<th>
|
449 |
+
<?php esc_html_e('update all your posts now', 'featured-image-from-url'); ?>
|
450 |
</th>
|
451 |
</tr>
|
452 |
</table>
|
454 |
</div>
|
455 |
<div id="tabs-g">
|
456 |
<div class="box">
|
457 |
+
<h2><?php esc_html_e('Same Height', 'featured-image-from-url'); ?></h2>
|
458 |
<div class="greybox" id="grad2">
|
459 |
+
<b>Premium</b><br><br>
|
460 |
+
<?php esc_html_e('If you have different sizes of images on your home (or shop), enable the toggle below to show them in the same height. Depending on your theme, it may be necessary to use a Selector to inform where is the group of images that you want to resize. ', 'featured-image-from-url'); ?>
|
461 |
</div>
|
462 |
<br>
|
463 |
|
464 |
<div id="tabsCrop">
|
465 |
|
466 |
<ul>
|
467 |
+
<li><a href="#tabsCrop-a"><?php esc_html_e('Same Height', 'featured-image-from-url'); ?></a></li>
|
468 |
+
<li><a href="#tabsCrop-b"><?php esc_html_e('Selector', 'featured-image-from-url'); ?></a></li>
|
469 |
+
<li><a href="#tabsCrop-c"><?php esc_html_e('Size Ratio', 'featured-image-from-url'); ?></a></li>
|
470 |
+
<li><a href="#tabsCrop-d"><?php esc_html_e('Object Fit', 'featured-image-from-url'); ?></a></li>
|
471 |
+
<li><a href="#tabsCrop-e"><?php esc_html_e('Delay', 'featured-image-from-url'); ?></a></li>
|
472 |
<br>
|
473 |
<br>
|
474 |
<div id="tabsCrop-a">
|
488 |
|
489 |
<div id="tabsCrop-b">
|
490 |
<div>
|
491 |
+
<?php esc_html_e('Examples of selectors...', 'featured-image-from-url'); ?><br><br>
|
492 |
<table style="text-align: left;">
|
493 |
<tr>
|
494 |
<th><b>#</b><i>products</i></th>
|
495 |
+
<th>(<?php esc_html_e('attribute', 'featured-image-from-url'); ?> <b>id</b>="<i>products</i>")</th>
|
496 |
</tr>
|
497 |
<tr>
|
498 |
<th><b>.</b><i>my-post-area</i></th>
|
499 |
+
<th>(<?php esc_html_e('attribute', 'featured-image-from-url'); ?> <b>class</b>="<i>my-post-area</i>")</th>
|
500 |
</tr>
|
501 |
<tr>
|
502 |
<th><b>#</b><i>products|4:3</i></th>
|
503 |
+
<th>(<?php esc_html_e('attribute', 'featured-image-from-url'); ?> <b>id</b>="<i>products</i>" <?php esc_html_e('and you want a 4:3 size ratio', 'featured-image-from-url'); ?></th>
|
504 |
</tr>
|
505 |
</table>
|
506 |
<br>
|
507 |
|
508 |
<input id="fifu_input_crop0"
|
509 |
type="text"
|
510 |
+
placeholder="<?php esc_html_e('selector', 'featured-image-from-url'); ?> 1"
|
511 |
style="width:130px"
|
512 |
value="">
|
513 |
<input id="fifu_input_crop1"
|
514 |
type="text"
|
515 |
+
placeholder="<?php esc_html_e('selector', 'featured-image-from-url'); ?> 2"
|
516 |
style="width:130px"
|
517 |
value="">
|
518 |
<input id="fifu_input_crop2"
|
519 |
type="text"
|
520 |
+
placeholder="<?php esc_html_e('selector', 'featured-image-from-url'); ?> 3"
|
521 |
style="width:130px"
|
522 |
value="">
|
523 |
<input id="fifu_input_crop3"
|
524 |
type="text"
|
525 |
+
placeholder="<?php esc_html_e('selector', 'featured-image-from-url'); ?> 4"
|
526 |
style="width:130px"
|
527 |
value="">
|
528 |
<input id="fifu_input_crop4"
|
529 |
type="text"
|
530 |
+
placeholder="<?php esc_html_e('selector', 'featured-image-from-url'); ?> 5"
|
531 |
style="width:130px"
|
532 |
value="">
|
533 |
<input type="submit"
|
534 |
+
value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
535 |
</div>
|
536 |
</div>
|
537 |
|
538 |
<div id="tabsCrop-c">
|
539 |
<div>
|
540 |
+
<?php esc_html_e('Examples of valid size ratios: 3:2, 16:9, 1:1...', 'featured-image-from-url'); ?>
|
541 |
<br>
|
542 |
<br>
|
543 |
<table style="text-align:left">
|
548 |
style="width:75px"
|
549 |
value="">
|
550 |
<input type="submit"
|
551 |
+
value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
552 |
</th>
|
553 |
</tr>
|
554 |
</table>
|
556 |
</div>
|
557 |
|
558 |
<div id="tabsCrop-d">
|
559 |
+
- <b>cover</b>: <?php esc_html_e('crops the images (the options center, top and bottom will be available in the post editor);', 'featured-image-from-url'); ?><br>
|
560 |
+
- <b>contain</b>: <?php esc_html_e('shows full images (in smaller sizes);', 'featured-image-from-url'); ?><br>
|
561 |
+
- <b>fill</b>: <?php esc_html_e('deforms the images.', 'featured-image-from-url'); ?><br>
|
562 |
<br>
|
563 |
<select id="select_fit" style="width:100px">
|
564 |
<option value="cover">cover</option>
|
566 |
<option value="fill">fill</option>
|
567 |
</select>
|
568 |
<input type="submit"
|
569 |
+
value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
570 |
</form>
|
571 |
</div>
|
572 |
|
580 |
size="5">
|
581 |
</th>
|
582 |
<th>
|
583 |
+
<?php esc_html_e('time (in ms)', 'featured-image-from-url'); ?>
|
584 |
</th>
|
585 |
</tr>
|
586 |
</table>
|
590 |
</div>
|
591 |
|
592 |
<div class="box">
|
593 |
+
<h2><?php esc_html_e('Unsplash Image Size', 'featured-image-from-url'); ?></h2>
|
594 |
<div class="greybox" id="grad2">
|
595 |
+
<b>Premium</b><br><br>
|
596 |
+
<?php esc_html_e('Choose the size of the Unsplash images (loaded randomly or via keywords search). Examples of valid sizes: 500x500, 300x400, 1920x1080... Or leave this field empty to get the original size.', 'featured-image-from-url'); ?>
|
597 |
</div>
|
598 |
<br>
|
599 |
<input id="fifu_input_unsplash_size"
|
602 |
value=""
|
603 |
size="8">
|
604 |
<input type="submit"
|
605 |
+
value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
606 |
</div>
|
607 |
|
608 |
<div class="box">
|
609 |
+
<h2><?php esc_html_e('Replace Not Found Image', 'featured-image-from-url'); ?></h2>
|
610 |
<div class="greybox" id="grad2">
|
611 |
+
<b>Premium</b><br><br>
|
612 |
+
<?php esc_html_e('Define the URL of an image to be shown in case of image not found error.', 'featured-image-from-url'); ?>
|
613 |
<br><br>
|
614 |
<input id="fifu_input_error_url"
|
615 |
type="text"
|
617 |
style="width:675px"
|
618 |
value="">
|
619 |
<input type="submit"
|
620 |
+
value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
621 |
</div>
|
622 |
</div>
|
623 |
|
624 |
<div class="box">
|
625 |
+
<h2><?php esc_html_e('Original Size', 'featured-image-from-url'); ?></h2>
|
626 |
<div class="greybox">
|
627 |
+
<?php esc_html_e('Useful if you have small images, here you can define if the image should be shown in the original size or resized to the dimensions of the available area.', 'featured-image-from-url'); ?>
|
628 |
</div>
|
629 |
<br>
|
630 |
<table style="text-align:left">
|
651 |
</form>
|
652 |
</th>
|
653 |
<th>
|
654 |
+
<?php esc_html_e('original size', 'featured-image-from-url'); ?>
|
655 |
</th>
|
656 |
</tr>
|
657 |
</table>
|
658 |
</div>
|
659 |
|
660 |
<div class="box">
|
661 |
+
<h2><?php esc_html_e('Default Featured Image', 'featured-image-from-url'); ?></h2>
|
662 |
<div class="greybox">
|
663 |
+
<?php esc_html_e('Define the URL of a default image to be shown when you create (or update) a post with no Featured Image.', 'featured-image-from-url'); ?>
|
664 |
<br><br>
|
665 |
<form
|
666 |
id="fifu_form_default_url"
|
674 |
value="<?php echo $default_url; ?>">
|
675 |
|
676 |
<input type="submit"
|
677 |
+
value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>"
|
678 |
onclick="fifu_default_js()">
|
679 |
</form>
|
680 |
</div>
|
691 |
href="javascript:void(0)"
|
692 |
id="fifu_toggle_enable_default_url"
|
693 |
onclick="invert('enable_default_url');
|
694 |
+
fifu_default_js();"
|
695 |
name="fifu_toggle_enable_default_url"
|
696 |
class="<?php echo $enable_default_url; ?>"
|
697 |
value=""
|
706 |
</div>
|
707 |
|
708 |
<div class="box">
|
709 |
+
<h2><?php esc_html_e('Featured Image in Content', 'featured-image-from-url'); ?></h2>
|
710 |
<div class="greybox">
|
711 |
+
<?php esc_html_e('Some themes don\'t show the Featured Image on posts (only on home). If that\'s is your case and you would like to show the Featured Image on posts, just enable the toggle. The Featured Image will appear at the beginning of the content, before the text.', 'featured-image-from-url'); ?>
|
712 |
</div>
|
713 |
<br>
|
714 |
<table style="text-align:left">
|
737 |
</form>
|
738 |
</th>
|
739 |
<th>
|
740 |
+
<?php esc_html_e('on page', 'featured-image-from-url'); ?>
|
741 |
</th>
|
742 |
</tr>
|
743 |
<tr>
|
765 |
</form>
|
766 |
</th>
|
767 |
<th>
|
768 |
+
<?php esc_html_e('on post', 'featured-image-from-url'); ?>
|
769 |
</th>
|
770 |
</tr>
|
771 |
</table>
|
772 |
</div>
|
773 |
|
774 |
<div class="box">
|
775 |
+
<h2><?php esc_html_e('Hide Featured Media', 'featured-image-from-url'); ?></h2>
|
776 |
<div class="greybox">
|
777 |
+
<?php esc_html_e('Hide the Featured Media (Image, Video or Slider) on posts but keeping its visibility on home.', 'featured-image-from-url'); ?>
|
778 |
</div>
|
779 |
<br>
|
780 |
<table style="text-align:left">
|
801 |
</form>
|
802 |
</th>
|
803 |
<th>
|
804 |
+
<?php esc_html_e('on page', 'featured-image-from-url'); ?>
|
805 |
</th>
|
806 |
</tr>
|
807 |
<tr>
|
827 |
</form>
|
828 |
</th>
|
829 |
<th>
|
830 |
+
<?php esc_html_e('on post', 'featured-image-from-url'); ?>
|
831 |
</th>
|
832 |
</tr>
|
833 |
<tr>
|
854 |
</form>
|
855 |
</th>
|
856 |
<th>
|
857 |
+
<?php esc_html_e('on custom post type', 'featured-image-from-url'); ?>
|
858 |
</th>
|
859 |
</tr>
|
860 |
</table>
|
861 |
</div>
|
862 |
|
863 |
<div class="box">
|
864 |
+
<h2><?php esc_html_e('Hover Effects', 'featured-image-from-url'); ?></h2>
|
865 |
<div class="greybox" id="grad2">
|
866 |
+
<b>Premium</b><br><br>
|
867 |
+
<?php esc_html_e('Choose a hover effect to be applied to the Featured Images on home.', 'featured-image-from-url'); ?>
|
868 |
</div>
|
869 |
<br>
|
870 |
<select id="select_hover" style="width:30%">
|
871 |
<option value=""></option>
|
872 |
+
<option value="hover17"><?php esc_html_e('315 Degrees', 'featured-image-from-url'); ?></option>
|
873 |
+
<option value="hover02"><?php esc_html_e('360 Degrees', 'featured-image-from-url'); ?></option>
|
874 |
+
<option value="hover07"><?php esc_html_e('Blur', 'featured-image-from-url'); ?></option>
|
875 |
+
<option value="hover10"><?php esc_html_e('Blur Gray Scale', 'featured-image-from-url'); ?></option>
|
876 |
+
<option value="hover04"><?php esc_html_e('Brighten', 'featured-image-from-url'); ?></option>
|
877 |
+
<option value="hover15"><?php esc_html_e('Circle', 'featured-image-from-url'); ?></option>
|
878 |
+
<option value="hover13"><?php esc_html_e('Flashing', 'featured-image-from-url'); ?></option>
|
879 |
+
<option value="hover08"><?php esc_html_e('Gray Scale', 'featured-image-from-url'); ?></option>
|
880 |
+
<option value="hover16"><?php esc_html_e('Horizontal Rotation', 'featured-image-from-url'); ?></option>
|
881 |
+
<option value="hover12"><?php esc_html_e('Opacity Color', 'featured-image-from-url'); ?></option>
|
882 |
+
<option value="hover11"><?php esc_html_e('Opacity White', 'featured-image-from-url'); ?></option>
|
883 |
+
<option value="hover18"><?php esc_html_e('Rainbow', 'featured-image-from-url'); ?></option>
|
884 |
+
<option value="hover06"><?php esc_html_e('Rotate', 'featured-image-from-url'); ?></option>
|
885 |
+
<option value="hover09"><?php esc_html_e('Sepia', 'featured-image-from-url'); ?></option>
|
886 |
+
<option value="hover14"><?php esc_html_e('Shine', 'featured-image-from-url'); ?></option>
|
887 |
+
<option value="hover05"><?php esc_html_e('Vertical Rotation', 'featured-image-from-url'); ?></option>
|
888 |
+
<option value="hover01"><?php esc_html_e('Zoom In', 'featured-image-from-url'); ?></option>
|
889 |
+
<option value="hover03"><?php esc_html_e('Zoom Out', 'featured-image-from-url'); ?></option>
|
890 |
</select>
|
891 |
|
892 |
<input id="fifu_input_hover_selector"
|
893 |
type="text"
|
894 |
name="fifu_input_hover_selector"
|
895 |
+
placeholder="<?php esc_html_e('CSS selectors (optional)', 'featured-image-from-url'); ?>"
|
896 |
value=""
|
897 |
style="width:50%">
|
898 |
|
899 |
+
<input type="submit" value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
900 |
</div>
|
901 |
|
902 |
<div class="box">
|
903 |
+
<h2><?php esc_html_e('Image Validation', 'featured-image-from-url'); ?></h2>
|
904 |
<div class="greybox" id="grad2">
|
905 |
+
<b>Premium</b><br><br>
|
906 |
+
<?php esc_html_e('It checks images addresses and, when an image is not found, its URL is not saved. However, each validation can take some seconds. It is not integrated with URL from Post Content or REST API features.', 'featured-image-from-url'); ?>
|
907 |
</div>
|
908 |
<br>
|
909 |
<input
|
914 |
</div>
|
915 |
|
916 |
<div class="box">
|
917 |
+
<h2><?php esc_html_e('CSS Style', 'featured-image-from-url'); ?></h2>
|
918 |
<div class="greybox">
|
919 |
+
<?php esc_html_e('Define a CSS style to be applied to the Featured Images. Example:', 'featured-image-from-url'); ?><br><br>
|
920 |
width: 50%; border-radius: 8px; border: 1px solid #ddd; padding: 5px;
|
921 |
</div>
|
922 |
<br>
|
932 |
value="<?php echo $css_style; ?>">
|
933 |
|
934 |
<input type="submit"
|
935 |
+
value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" >
|
936 |
</form>
|
937 |
</div>
|
938 |
|
939 |
<div class="box">
|
940 |
+
<h2><?php esc_html_e('Add Class', 'featured-image-from-url'); ?></h2>
|
941 |
<div class="greybox">
|
942 |
+
<?php esc_html_e('Add the class "fifu-class" to the Featured Image tags.', 'featured-image-from-url'); ?><br>
|
943 |
</div>
|
944 |
<br>
|
945 |
<form
|
965 |
|
966 |
<div class="box">
|
967 |
|
968 |
+
<h2><?php esc_html_e('Save Image Dimensions', 'featured-image-from-url'); ?></h2>
|
969 |
|
970 |
<div class="greybox">
|
971 |
+
<?php esc_html_e('Some themes and WooCommerce lightbox (PhotoSwipe) may need the image width and height to avoid style issues.', 'featured-image-from-url'); ?>
|
972 |
</div>
|
973 |
|
974 |
<br>
|
998 |
</form>
|
999 |
</th>
|
1000 |
<th>
|
1001 |
+
<?php esc_html_e('save and use image dimensions', 'featured-image-from-url'); ?>
|
1002 |
</th>
|
1003 |
</tr>
|
1004 |
<tr>
|
1011 |
type="submit"
|
1012 |
href="javascript:void(0)"
|
1013 |
id="fifu_toggle_save_dimensions_all"
|
1014 |
+
onclick="invert('save_dimensions_all'); fifu_save_dimensions_all_js();"
|
1015 |
name="fifu_toggle_save_dimensions_all"
|
1016 |
class="<?php echo $enable_save_dimensions_all; ?>"
|
1017 |
value=""
|
1025 |
</form>
|
1026 |
</th>
|
1027 |
<th>
|
1028 |
+
<?php esc_html_e('save the dimensions of all Featured Images now (it requires php-curl)', 'featured-image-from-url'); ?>
|
1029 |
</th>
|
1030 |
<th>
|
1031 |
<div id="countdown"><?php echo fifu_db_missing_dimensions() ?></div>
|
1041 |
type="submit"
|
1042 |
href="javascript:void(0)"
|
1043 |
id="fifu_toggle_clean_dimensions_all"
|
1044 |
+
onclick="invert('clean_dimensions_all'); fifu_clean_dimensions_all_js();"
|
1045 |
name="fifu_toggle_clean_dimensions_all"
|
1046 |
class="<?php echo $enable_clean_dimensions_all; ?>"
|
1047 |
value=""
|
1055 |
</form>
|
1056 |
</th>
|
1057 |
<th>
|
1058 |
+
<?php esc_html_e('clean the dimensions of all Featured Images now', 'featured-image-from-url'); ?>
|
1059 |
</th>
|
1060 |
</tr>
|
1061 |
<tr>
|
1082 |
</form>
|
1083 |
</th>
|
1084 |
<th>
|
1085 |
+
<?php esc_html_e('follow redirects (it will make the process slower)', 'featured-image-from-url'); ?>
|
1086 |
</th>
|
1087 |
</tr>
|
1088 |
</table>
|
1092 |
</div>
|
1093 |
<div id="tabs-j">
|
1094 |
<div class="box">
|
1095 |
+
<h2><?php esc_html_e('Image Metadata', 'featured-image-from-url'); ?></h2>
|
1096 |
<div class="greybox">
|
1097 |
+
<?php esc_html_e('Most themes and plugins are not able to show the external Featured Image if there is no internal Featured Image associated to your post. Enabling the toggle below, symbolic empty files will be added to your Media Library to overcome this limitation.', 'featured-image-from-url'); ?>
|
1098 |
</div>
|
1099 |
<br>
|
1100 |
<form
|
1106 |
href="javascript:void(0)"
|
1107 |
id="fifu_toggle_fake"
|
1108 |
onclick="invert('fake');
|
1109 |
+
fifu_fake_js();";
|
1110 |
name="fifu_toggle_fake"
|
1111 |
class="<?php echo $enable_fake; ?>"
|
1112 |
value=""
|
1121 |
|
1122 |
<div class="box">
|
1123 |
|
1124 |
+
<h2><?php esc_html_e('Clean Metadata', 'featured-image-from-url'); ?></h2>
|
1125 |
|
1126 |
<div class="greybox">
|
1127 |
|
1128 |
+
<?php esc_html_e('Clean the Image Metadata generated by FIFU, but not the URLs. This option might be necessary if you intend to deactivate the plugin and use only internal Featured Images again.', 'featured-image-from-url'); ?>
|
1129 |
|
1130 |
</div>
|
1131 |
|
1143 |
href="javascript:void(0)"
|
1144 |
id="fifu_toggle_data_clean"
|
1145 |
onclick="invert('data_clean');
|
1146 |
+
fifu_clean_js();";
|
1147 |
name="fifu_toggle_data_clean"
|
1148 |
class="<?php echo $enable_data_clean; ?>"
|
1149 |
value=""
|
1157 |
</form>
|
1158 |
</th>
|
1159 |
<th>
|
1160 |
+
<?php esc_html_e('it will be automatically disabled when finished', 'featured-image-from-url'); ?>
|
1161 |
</th>
|
1162 |
</tr>
|
1163 |
</table>
|
1165 |
|
1166 |
<div class="box">
|
1167 |
|
1168 |
+
<h2><?php esc_html_e('Delete All URLs', 'featured-image-from-url'); ?> <span class="dashicons dashicons-welcome-comments" style="font-size: 25px;" title="<?php esc_html_e('Requirement: access Plugins -> Plugin Editor -> Select plugin to edit -> Featured Image from URL -> Select. Then change the value of FIFU_DELETE_ALL_URLS from false to true.', 'featured-image-from-url'); ?>"></span></h2>
|
1169 |
|
1170 |
<div class="greybox">
|
1171 |
|
1172 |
+
<b><?php esc_html_e('Important:', 'featured-image-from-url'); ?></b> <?php esc_html_e('this plugin doesn\'t save images in the media library. It means that enabling the two toggles below all post types that have an external Featured Image will no longer have any Featured Image. And you can\'t undo this action later. This also applies to FIFU galleries, videos, sliders and shortcodes.', 'featured-image-from-url'); ?>
|
1173 |
|
1174 |
</div>
|
1175 |
|
1200 |
</form>
|
1201 |
</th>
|
1202 |
<th>
|
1203 |
+
<?php esc_html_e('confirm that you are ready to lose your Featured Images', 'featured-image-from-url'); ?>
|
1204 |
</th>
|
1205 |
</tr>
|
1206 |
<tr>
|
1213 |
type="submit"
|
1214 |
href="javascript:void(0)"
|
1215 |
id="fifu_toggle_run_delete_all"
|
1216 |
+
onclick="invert('run_delete_all'); fifu_run_delete_all_js();"
|
1217 |
name="fifu_toggle_run_delete_all"
|
1218 |
class="<?php echo $enable_run_delete_all; ?>"
|
1219 |
value=""
|
1227 |
</form>
|
1228 |
</th>
|
1229 |
<th>
|
1230 |
+
<?php esc_html_e('delete all your URLs now', 'featured-image-from-url'); ?>
|
1231 |
</th>
|
1232 |
</tr>
|
1233 |
</table>
|
1236 |
<div id="tabs-l">
|
1237 |
<div class="box">
|
1238 |
|
1239 |
+
<h2><?php esc_html_e('Featured Shortcode', 'featured-image-from-url'); ?></h2>
|
1240 |
|
1241 |
<div class="greybox" id="grad2">
|
1242 |
+
<b>Premium</b><br><br>
|
1243 |
|
1244 |
+
<?php esc_html_e('This experimental feature allows to input a shortcode instead of an URL. It would allow you to have any content as Featured Media (a music, a text, a map etc). However, some contents will need a large area of your site to be shown properly. So you should define a minimum width that an area of your site should have to be able to show the shortcode content. Otherwise an icon will be shown.', 'featured-image-from-url'); ?><br/><br/>
|
1245 |
+
<b><?php esc_html_e('Important:', 'featured-image-from-url'); ?></b> <?php esc_html_e('shortcodes can be not compatible with other FIFU features, such as CSS Style, Same Height, Lazy Load etc.', 'featured-image-from-url'); ?>
|
1246 |
|
1247 |
</div>
|
1248 |
|
1274 |
</form>
|
1275 |
</th>
|
1276 |
<th>
|
1277 |
+
<?php esc_html_e('minimum width (px)', 'featured-image-from-url'); ?>
|
1278 |
|
1279 |
<form
|
1280 |
id="fifu_form_shortcode_min_width"
|
1288 |
value=""
|
1289 |
style="width:85px">
|
1290 |
<br>
|
1291 |
+
<input type="submit" value="<?php esc_html_e('OK', 'featured-image-from-url'); ?>" style="width:85px" disabled>
|
1292 |
</form>
|
1293 |
</th>
|
1294 |
</tr>
|
1299 |
<div id="tabs-e">
|
1300 |
<div class="box">
|
1301 |
|
1302 |
+
<h2><?php esc_html_e('Auto Set Image Title', 'featured-image-from-url'); ?></h2>
|
1303 |
|
1304 |
<div class="greybox">
|
1305 |
|
1306 |
+
<?php esc_html_e('Set the title of a Featured Image with the post title.', 'featured-image-from-url'); ?>
|
1307 |
|
1308 |
</div>
|
1309 |
|
1334 |
</form>
|
1335 |
</th>
|
1336 |
<th>
|
1337 |
+
<?php esc_html_e('copy the post title to FIFU alt/title field (it has effect when you click on Publish button in the post editor)', 'featured-image-from-url'); ?>
|
1338 |
</th>
|
1339 |
</tr>
|
1340 |
<tr>
|
1361 |
</form>
|
1362 |
</th>
|
1363 |
<th>
|
1364 |
+
<?php esc_html_e('always use the post title as image title (it will ignore FIFU alt/title field)', 'featured-image-from-url'); ?>
|
1365 |
</th>
|
1366 |
</tr>
|
1367 |
</table>
|
1371 |
<div id="tabs-c">
|
1372 |
<div class="box">
|
1373 |
|
1374 |
+
<h2><?php esc_html_e('Featured Video', 'featured-image-from-url'); ?></h2>
|
1375 |
|
1376 |
<div class="greybox" id="grad2">
|
1377 |
+
<b>Premium</b><br><br>
|
1378 |
|
1379 |
+
<?php esc_html_e('FIFU supports videos from YouTube, Vimeo, Imgur, 9GAG, Cloudinary, Tumblr and Publitio (videos hosted elsewhere are not supported).', 'featured-image-from-url'); ?>
|
1380 |
|
1381 |
</div>
|
1382 |
|
1407 |
</div>
|
1408 |
|
1409 |
<div class="box">
|
1410 |
+
<h2><?php esc_html_e('Video Thumbnail', 'featured-image-from-url'); ?></h2>
|
1411 |
<div class="greybox" id="grad2">
|
1412 |
+
<b>Premium</b><br><br>
|
1413 |
+
<?php esc_html_e('Show the video thumbnail instead of the video. Thumbnails are images, so they are loaded much faster than embedded videos.', 'featured-image-from-url'); ?>
|
1414 |
</div>
|
1415 |
<br>
|
1416 |
<table style="text-align:left">
|
1424 |
style="display:block;border:none">
|
1425 |
</th>
|
1426 |
<th>
|
1427 |
+
<?php esc_html_e('on home (or shop)', 'featured-image-from-url'); ?>
|
1428 |
</th>
|
1429 |
</tr>
|
1430 |
<tr>
|
1437 |
style="display:block;border:none">
|
1438 |
</th>
|
1439 |
<th>
|
1440 |
+
<?php esc_html_e('on page', 'featured-image-from-url'); ?>
|
1441 |
</th>
|
1442 |
</tr>
|
1443 |
<tr>
|
1450 |
style="display:block;border:none">
|
1451 |
</th>
|
1452 |
<th>
|
1453 |
+
<?php esc_html_e('on post', 'featured-image-from-url'); ?>
|
1454 |
</th>
|
1455 |
</tr>
|
1456 |
<tr>
|
1463 |
style="display:block;border:none">
|
1464 |
</th>
|
1465 |
<th>
|
1466 |
+
<?php esc_html_e('on custom post type', 'featured-image-from-url'); ?>
|
1467 |
</th>
|
1468 |
</tr>
|
1469 |
</table>
|
1470 |
</div>
|
1471 |
|
1472 |
<div class="box">
|
1473 |
+
<h2><?php esc_html_e('Play Button', 'featured-image-from-url'); ?></h2>
|
1474 |
<div class="greybox" id="grad2">
|
1475 |
+
<b>Premium</b><br><br>
|
1476 |
+
<?php esc_html_e('Add play button to video thumbnail. Clicking on that, the video starts inline or in a lightbox.', 'featured-image-from-url'); ?>
|
1477 |
</div>
|
1478 |
<br>
|
1479 |
<table style="text-align:left">
|
1487 |
style="display:block;border:none">
|
1488 |
</th>
|
1489 |
<th>
|
1490 |
+
<?php esc_html_e('color', 'featured-image-from-url'); ?>
|
1491 |
<br>
|
1492 |
<input
|
1493 |
id="fifu_input_video_color"
|
1496 |
value=""
|
1497 |
style="width:85px">
|
1498 |
<br>
|
1499 |
+
<input type="submit" value="<?php esc_html_e('OK', 'featured-image-from-url'); ?>" style="width:85px" disabled>
|
1500 |
</th>
|
1501 |
<th>
|
1502 |
+
<?php esc_html_e('mode', 'featured-image-from-url'); ?>
|
1503 |
<br>
|
1504 |
<select id="select_play_type" style="width:85px">
|
1505 |
+
<option value="inline"><?php esc_html_e('inline', 'featured-image-from-url'); ?></option>
|
1506 |
+
<option value="lightbox"><?php esc_html_e('lightbox', 'featured-image-from-url'); ?></option>
|
1507 |
</select>
|
1508 |
|
1509 |
<br>
|
1510 |
+
<input type="submit" value="<?php esc_html_e('OK', 'featured-image-from-url'); ?>" style="width:85px" disabled>
|
1511 |
</th>
|
1512 |
<th>
|
1513 |
+
<?php esc_html_e('z-index', 'featured-image-from-url'); ?>
|
1514 |
<br>
|
1515 |
<input
|
1516 |
id="fifu_form_video_zindex"
|
1519 |
value=""
|
1520 |
style="width:85px">
|
1521 |
<br>
|
1522 |
+
<input type="submit" value="<?php esc_html_e('OK', 'featured-image-from-url'); ?>" style="width:85px" disabled>
|
1523 |
</th>
|
1524 |
<th>
|
1525 |
<br>
|
1529 |
class="toggleoff"
|
1530 |
value=""
|
1531 |
style="display:block;border:none">
|
1532 |
+
<?php esc_html_e('hide from grid', 'featured-image-from-url'); ?><br>
|
1533 |
</th>
|
1534 |
</tr>
|
1535 |
</table>
|
1536 |
</div>
|
1537 |
|
1538 |
<div class="box">
|
1539 |
+
<h2><?php esc_html_e('Minimum Width', 'featured-image-from-url'); ?></h2>
|
1540 |
<div class="greybox" id="grad2">
|
1541 |
+
<b>Premium</b><br><br>
|
1542 |
+
<?php esc_html_e('Define a minimum width that a theme area should have to show a video. FIFU automatically shows a thumbnail when the minimum width is not reached.', 'featured-image-from-url'); ?>
|
1543 |
</div>
|
1544 |
<br>
|
1545 |
+
<input id="fifu_input_video_min_width" type="text" name="fifu_input_video_min_width" value="" placeholder="<?php esc_html_e('e.g.: 300', 'featured-image-from-url'); ?>" size="4" style="width:75px">
|
1546 |
+
<input type="submit" value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
1547 |
</div>
|
1548 |
|
1549 |
<div class="box">
|
1550 |
+
<h2><?php esc_html_e('Black Background', 'featured-image-from-url'); ?></h2>
|
1551 |
<div class="greybox" id="grad2">
|
1552 |
+
<b>Premium</b><br><br>
|
1553 |
+
<?php esc_html_e('Unlike Youtube, Vimeo videos can\'t fit a theme area without generating a vertical padding. Here you can change the background color from transparent to black.', 'featured-image-from-url'); ?>
|
1554 |
</div>
|
1555 |
<br>
|
1556 |
+
<table style="text-align:left">
|
1557 |
+
<tr>
|
1558 |
+
<th>
|
1559 |
+
<input
|
1560 |
+
type="submit"
|
1561 |
+
href="javascript:void(0)"
|
1562 |
+
class="toggleoff"
|
1563 |
+
value=""
|
1564 |
+
style="display:block;border:none">
|
1565 |
+
</th>
|
1566 |
+
<th>
|
1567 |
+
<?php esc_html_e('for Vimeo videos', 'featured-image-from-url'); ?>
|
1568 |
+
</th>
|
1569 |
+
</tr>
|
1570 |
+
</table>
|
1571 |
</div>
|
1572 |
|
1573 |
<div class="box">
|
1574 |
+
<h2><?php esc_html_e('Mouseover Autoplay', 'featured-image-from-url'); ?></h2>
|
1575 |
<div class="greybox" id="grad2">
|
1576 |
+
<b>Premium</b><br><br>
|
1577 |
+
<?php esc_html_e('Play a video on "mouseover" and pause on "mouseout".', 'featured-image-from-url'); ?>
|
1578 |
</div>
|
1579 |
<br>
|
1580 |
<table style="text-align:left">
|
1588 |
style="display:block;border:none">
|
1589 |
</th>
|
1590 |
<th>
|
1591 |
+
<?php esc_html_e('for YouTube videos', 'featured-image-from-url'); ?>
|
1592 |
</th>
|
1593 |
</tr>
|
1594 |
<tr>
|
1601 |
style="display:block;border:none">
|
1602 |
</th>
|
1603 |
<th>
|
1604 |
+
<?php esc_html_e('for Vimeo videos', 'featured-image-from-url'); ?>
|
1605 |
</th>
|
1606 |
</tr>
|
1607 |
</table>
|
1608 |
</div>
|
1609 |
|
1610 |
<div class="box">
|
1611 |
+
<h2><?php esc_html_e('Autoplay', 'featured-image-from-url'); ?></h2>
|
1612 |
<div class="greybox" id="grad2">
|
1613 |
+
<b>Premium</b><br><br>
|
1614 |
+
<?php esc_html_e('Autoplay videos (available for YouTube and Vimeo).', 'featured-image-from-url'); ?>
|
1615 |
</div>
|
1616 |
<br>
|
1617 |
<table style="text-align:left">
|
1629 |
</div>
|
1630 |
|
1631 |
<div class="box">
|
1632 |
+
<h2><?php esc_html_e('Loop', 'featured-image-from-url'); ?></h2>
|
1633 |
<div class="greybox" id="grad2">
|
1634 |
+
<b>Premium</b><br><br>
|
1635 |
+
<?php esc_html_e('Loop videos (available for YouTube and Vimeo).', 'featured-image-from-url'); ?>
|
1636 |
</div>
|
1637 |
<br>
|
1638 |
<table style="text-align:left">
|
1650 |
</div>
|
1651 |
|
1652 |
<div class="box">
|
1653 |
+
<h2><?php esc_html_e('Mute', 'featured-image-from-url'); ?></h2>
|
1654 |
<div class="greybox" id="grad2">
|
1655 |
+
<b>Premium</b><br><br>
|
1656 |
+
<?php esc_html_e('Start the videos without audio (available for YouTube and Vimeo).', 'featured-image-from-url'); ?>
|
1657 |
+
</div>
|
1658 |
+
<br>
|
1659 |
+
<table style="text-align:left">
|
1660 |
+
<tr>
|
1661 |
+
<th>
|
1662 |
+
<input
|
1663 |
+
type="submit"
|
1664 |
+
href="javascript:void(0)"
|
1665 |
+
class="toggleoff"
|
1666 |
+
value=""
|
1667 |
+
style="display:block;border:none">
|
1668 |
+
</th>
|
1669 |
+
</tr>
|
1670 |
+
</table>
|
1671 |
+
</div>
|
1672 |
+
|
1673 |
+
|
1674 |
+
<div class="box">
|
1675 |
+
<h2><?php esc_html_e('Background Video', 'featured-image-from-url'); ?></h2>
|
1676 |
+
<div class="greybox" id="grad2">
|
1677 |
+
<b>Premium</b><br><br>
|
1678 |
+
<?php esc_html_e('Start the videos in background, which means autoplay, no controls and no sound.', 'featured-image-from-url'); ?>
|
1679 |
+
</div>
|
1680 |
+
<br>
|
1681 |
+
<table style="text-align:left">
|
1682 |
+
<tr>
|
1683 |
+
<th>
|
1684 |
+
<input
|
1685 |
+
type="submit"
|
1686 |
+
href="javascript:void(0)"
|
1687 |
+
class="toggleoff"
|
1688 |
+
value=""
|
1689 |
+
style="display:block;border:none">
|
1690 |
+
</th>
|
1691 |
+
<th>
|
1692 |
+
<?php esc_html_e('for Vimeo videos', 'featured-image-from-url'); ?>
|
1693 |
+
</th>
|
1694 |
+
</tr>
|
1695 |
+
</table>
|
1696 |
+
</div>
|
1697 |
+
|
1698 |
+
<div class="box">
|
1699 |
+
<h2><?php esc_html_e('Related Videos', 'featured-image-from-url'); ?></h2>
|
1700 |
+
<div class="greybox" id="grad2">
|
1701 |
+
<b>Premium</b><br><br>
|
1702 |
+
<?php esc_html_e('Show related videos when the video ends.', 'featured-image-from-url'); ?>
|
1703 |
</div>
|
1704 |
<br>
|
1705 |
<table style="text-align:left">
|
1712 |
value=""
|
1713 |
style="display:block;border:none">
|
1714 |
</th>
|
1715 |
+
<th>
|
1716 |
+
<?php esc_html_e('for YouTube videos', 'featured-image-from-url'); ?>
|
1717 |
+
</th>
|
1718 |
</tr>
|
1719 |
</table>
|
1720 |
</div>
|
1721 |
|
1722 |
<div class="box">
|
1723 |
+
<h2><?php esc_html_e('Gallery Icon', 'featured-image-from-url'); ?></h2>
|
1724 |
<div class="greybox" id="grad2">
|
1725 |
+
<?php esc_html_e('Add icons to the video thumbnails in the WooCommerce gallery.', 'featured-image-from-url'); ?>
|
1726 |
<br>
|
1727 |
<br>
|
1728 |
<input id="fifu_input_gallery_selector"
|
1729 |
type="text"
|
1730 |
name="fifu_input_gallery_selector"
|
1731 |
+
placeholder="<?php esc_html_e('CSS selector', 'featured-image-from-url'); ?>"
|
1732 |
+
title="<?php esc_html_e('CSS selector', 'featured-image-from-url'); ?>"
|
1733 |
value=""
|
1734 |
style="width:50%;min-height:24px;line-height:0;">
|
1735 |
|
1736 |
+
<input type="submit" value="<?php esc_html_e('Submit', 'featured-image-from-url'); ?>" disabled>
|
1737 |
|
1738 |
+
<span class="dashicons dashicons-editor-help" style="font-size: 25px;" title="<?php printf(esc_html__('In order to FIFU identify your gallery, it\'s necessary to inform its CSS selector here. The default value is %1$s, but you may need a different selector if your theme overwrites the original WooCommerce layout.', 'featured-image-from-url'), 'ol.flex-control-thumbs'); ?>"></span>
|
1739 |
</div>
|
1740 |
<br>
|
1741 |
<table style="text-align:left">
|
1754 |
</div>
|
1755 |
<div id="tabs-m">
|
1756 |
<div class="box">
|
1757 |
+
<h2><?php esc_html_e('Featured Slider', 'featured-image-from-url'); ?></h2>
|
1758 |
<div class="greybox" id="grad2">
|
1759 |
+
<b>Premium</b><br><br>
|
1760 |
+
<?php esc_html_e('Define the slider settings here.', 'featured-image-from-url'); ?>
|
1761 |
+
<br>
|
1762 |
+
<br>
|
1763 |
<table style="text-align:left">
|
1764 |
<tr>
|
1765 |
<th>
|
1772 |
value="" style="display:block;border:none">
|
1773 |
</th>
|
1774 |
<th>
|
1775 |
+
<?php esc_html_e('Featured Slider', 'featured-image-from-url'); ?>
|
1776 |
</th>
|
1777 |
</tr>
|
1778 |
<tr>
|
1786 |
value="" style="display:block;border:none">
|
1787 |
</th>
|
1788 |
<th>
|
1789 |
+
<?php esc_html_e('fade effect', 'featured-image-from-url'); ?>
|
1790 |
</th>
|
1791 |
</tr>
|
1792 |
<tr>
|
1800 |
value="" style="display:block;border:none">
|
1801 |
</th>
|
1802 |
<th>
|
1803 |
+
<?php esc_html_e('pause autoplay on hover', 'featured-image-from-url'); ?>
|
1804 |
</th>
|
1805 |
</tr>
|
1806 |
<tr>
|
1814 |
value="" style="display:block;border:none">
|
1815 |
</th>
|
1816 |
<th>
|
1817 |
+
<?php esc_html_e('show prev/next buttons', 'featured-image-from-url'); ?>
|
1818 |
</th>
|
1819 |
</tr>
|
1820 |
<tr>
|
1828 |
value="" style="display:block;border:none">
|
1829 |
</th>
|
1830 |
<th>
|
1831 |
+
<?php esc_html_e('start automatically', 'featured-image-from-url'); ?>
|
1832 |
</th>
|
1833 |
</tr>
|
1834 |
<tr>
|
1843 |
style="display:block;border:none">
|
1844 |
</th>
|
1845 |
<th>
|
1846 |
+
<?php esc_html_e('show gallery on click', 'featured-image-from-url'); ?>
|
1847 |
</th>
|
1848 |
</tr>
|
1849 |
<tr>
|
1854 |
size="4">
|
1855 |
</th>
|
1856 |
<th>
|
1857 |
+
<?php esc_html_e('time between each transition (in ms)', 'featured-image-from-url'); ?>
|
1858 |
</th>
|
1859 |
</tr>
|
1860 |
<tr>
|
1866 |
size="4">
|
1867 |
</th>
|
1868 |
<th>
|
1869 |
+
<?php esc_html_e('transition duration (in ms)', 'featured-image-from-url'); ?>
|
1870 |
</th>
|
1871 |
</tr>
|
1872 |
</table>
|
|
|
1873 |
</div>
|
1874 |
</div>
|
1875 |
</div>
|
1876 |
<div id="tabs-n">
|
1877 |
<div class="box">
|
1878 |
+
<h2><?php esc_html_e('Social Tags', 'featured-image-from-url'); ?></h2>
|
1879 |
<div class="greybox">
|
1880 |
+
<?php esc_html_e('Use social tags to share your posts (and their Featured Images) on the social media.', 'featured-image-from-url'); ?>
|
1881 |
</div>
|
1882 |
<br>
|
1883 |
<table style="text-align:left">
|
1906 |
</form>
|
1907 |
</th>
|
1908 |
<th>
|
1909 |
+
<?php esc_html_e('add social tags', 'featured-image-from-url'); ?>
|
1910 |
</th>
|
1911 |
</tr>
|
1912 |
<tr>
|
1934 |
</form>
|
1935 |
</th>
|
1936 |
<th>
|
1937 |
+
<?php esc_html_e('only image tags', 'featured-image-from-url'); ?>
|
1938 |
</th>
|
1939 |
</tr>
|
1940 |
</table>
|
1941 |
</div>
|
1942 |
<div class="box">
|
1943 |
+
<h2><?php esc_html_e('Media RSS Tags', 'featured-image-from-url'); ?></h2>
|
1944 |
<div class="greybox" id="grad2">
|
1945 |
+
<b>Premium</b><br><br>
|
1946 |
+
<?php esc_html_e('Add Media RSS tags in the RSS feed. This way, services that make use of RSS, such as Google News, can show the Featured Images.', 'featured-image-from-url'); ?>
|
1947 |
</div>
|
1948 |
<br>
|
1949 |
<table style="text-align:left">
|
1957 |
style="display:block;border:none">
|
1958 |
</th>
|
1959 |
<th>
|
1960 |
+
<?php esc_html_e('width', 'featured-image-from-url'); ?>
|
1961 |
<br>
|
1962 |
<input
|
1963 |
id="fifu_input_rss_width"
|
1964 |
type="text"
|
1965 |
name="fifu_input_rss_width"
|
1966 |
value=""
|
1967 |
+
placeholder="<?php esc_html_e('e.g.: 600', 'featured-image-from-url'); ?>"
|
1968 |
style="width:85px">
|
1969 |
<br>
|
1970 |
+
<input type="submit" value="<?php esc_html_e('OK', 'featured-image-from-url'); ?>" style="width:85px" disabled>
|
1971 |
</th>
|
1972 |
</tr>
|
1973 |
</table>
|
1975 |
</div>
|
1976 |
<div id="tabs-i">
|
1977 |
<div class="box">
|
1978 |
+
<h2><?php esc_html_e('Lazy Load', 'featured-image-from-url'); ?></h2>
|
1979 |
<div class="greybox">
|
1980 |
+
<?php esc_html_e('With Lazy Load, images and videos won\'t be loaded until user scrolls to them. It makes your home (or shop) faster.', 'featured-image-from-url'); ?><br><br>
|
1981 |
+
<b><?php esc_html_e('Important:', 'featured-image-from-url'); ?></b> <?php esc_html_e('some themes and plugins (Jetpack for instance) have their own lazy load implementations, causing conflicts. Your images may not load if you have more than one lazy load component running at the same time.', 'featured-image-from-url'); ?>
|
1982 |
</div>
|
1983 |
<br>
|
1984 |
<form
|
2003 |
</div>
|
2004 |
|
2005 |
<div class="box">
|
2006 |
+
<h2><a href="https://www.flickr.com/">Flickr</a> <?php esc_html_e('Thumbnails', 'featured-image-from-url'); ?></h2>
|
2007 |
<div class="greybox" id="grad2">
|
2008 |
+
<b>Premium</b><br><br>
|
2009 |
<div id="tabs-flickr">
|
2010 |
<ul>
|
2011 |
+
<li><a href="#tabs-flickr-d"><?php esc_html_e('Sizes', 'featured-image-from-url'); ?></a></li>
|
2012 |
+
<li><a href="#tabs-flickr-c"><?php esc_html_e('Getting Flickr URL', 'featured-image-from-url'); ?></a></li>
|
|
|
|
|
2013 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014 |
<div id="tabs-flickr-c">
|
2015 |
<br><br><br>
|
2016 |
+
<?php esc_html_e('You just need to get one URL (Square 75, for example). Use that into the Featured Image (URL) field of your post. FIFU will handle this URL to provide the image in different sizes.', 'featured-image-from-url'); ?><br><br>
|
2017 |
<img src="https://c1.staticflickr.com/1/745/31593837206_8e081be749_z_d.jpg" style="width:100%"/>
|
2018 |
<br><br>
|
2019 |
<img src="https://c1.staticflickr.com/1/223/30820834393_f869fcff49_z_d.jpg" style="width:100%"/>
|
2020 |
</div>
|
2021 |
<div id="tabs-flickr-d">
|
|
|
|
|
2022 |
<br><br>
|
2023 |
<table id="thumbnail-size">
|
2024 |
<tr>
|
2025 |
+
<th><?php esc_html_e('width', 'featured-image-from-url'); ?></th>
|
2026 |
<th>75</th>
|
2027 |
<th>100</th>
|
2028 |
<th>150</th>
|
2034 |
<th>1024</th>
|
2035 |
</tr>
|
2036 |
<tr>
|
2037 |
+
<td><center><?php esc_html_e('post', 'featured-image-from-url'); ?></center></td>
|
2038 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-post-75"></center></td>
|
2039 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-post-100"></center></td>
|
2040 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-post-150"></center></td>
|
2046 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-post-1024"></center></td>
|
2047 |
</tr>
|
2048 |
<tr>
|
2049 |
+
<td><center><?php esc_html_e('page', 'featured-image-from-url'); ?></center></td>
|
2050 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-page-75"></center></td>
|
2051 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-page-100"></center></td>
|
2052 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-page-150"></center></td>
|
2058 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-page-1024"></center></td>
|
2059 |
</tr>
|
2060 |
<tr>
|
2061 |
+
<td><center><?php esc_html_e('archive', 'featured-image-from-url'); ?></center></td>
|
2062 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-arch-75"></center></td>
|
2063 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-arch-100"></center></td>
|
2064 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-arch-150"></center></td>
|
2070 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-arch-1024"></center></td>
|
2071 |
</tr>
|
2072 |
<tr>
|
2073 |
+
<td><center><?php esc_html_e('cart', 'featured-image-from-url'); ?></center></td>
|
2074 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-cart-75"></center></td>
|
2075 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-cart-100"></center></td>
|
2076 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-cart-150"></center></td>
|
2082 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-cart-1024"></center></td>
|
2083 |
</tr>
|
2084 |
<tr>
|
2085 |
+
<td><center><?php esc_html_e('category', 'featured-image-from-url'); ?></center></td>
|
2086 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-ctgr-75"></center></td>
|
2087 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-ctgr-100"></center></td>
|
2088 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-ctgr-150"></center></td>
|
2094 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-ctgr-1024"></center></td>
|
2095 |
</tr>
|
2096 |
<tr>
|
2097 |
+
<td><center><?php esc_html_e('home', 'featured-image-from-url'); ?></center></td>
|
2098 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-home-75"></center></td>
|
2099 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-home-100"></center></td>
|
2100 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-home-150"></center></td>
|
2106 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-home-1024"></center></td>
|
2107 |
</tr>
|
2108 |
<tr>
|
2109 |
+
<td><center><?php esc_html_e('product', 'featured-image-from-url'); ?></center></td>
|
2110 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-prod-75"></center></td>
|
2111 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-prod-100"></center></td>
|
2112 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-prod-150"></center></td>
|
2118 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-prod-1024"></center></td>
|
2119 |
</tr>
|
2120 |
<tr>
|
2121 |
+
<td><center><?php esc_html_e('shop', 'featured-image-from-url'); ?></center></td>
|
2122 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-shop-75"></center></td>
|
2123 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-shop-100"></center></td>
|
2124 |
<td><center><input type="checkbox" onclick="javascript:void(0)" id="cb-shop-150"></center></td>
|
2139 |
<div id="tabs-q">
|
2140 |
<div class="box">
|
2141 |
|
2142 |
+
<h2><?php esc_html_e('WP / WooCommerce REST API', 'featured-image-from-url'); ?></h2>
|
2143 |
|
2144 |
<div class="greybox" id="grad2">
|
2145 |
+
<b>Premium</b><br><br>
|
2146 |
<div id="tabsApi">
|
2147 |
<ul>
|
2148 |
+
<li><a href="#tabs-1"><?php esc_html_e('Endpoints', 'featured-image-from-url'); ?></a></li>
|
2149 |
+
<li><a href="#tabs-2"><?php esc_html_e('Custom Fields', 'featured-image-from-url'); ?></a></li>
|
2150 |
+
<li><a href="#tabs-3"><?php esc_html_e('Creating your first product', 'featured-image-from-url'); ?></a></li>
|
2151 |
+
<li><a href="#tabs-6"><?php esc_html_e('product category', 'featured-image-from-url'); ?></a></li>
|
2152 |
+
<li><a href="#tabs-7"><?php esc_html_e('variable product', 'featured-image-from-url'); ?></a></li>
|
2153 |
+
<li><a href="#tabs-4"><?php esc_html_e('product variation', 'featured-image-from-url'); ?></a></li>
|
2154 |
+
<li><a href="#tabs-8"><?php esc_html_e('batch', 'featured-image-from-url'); ?></a></li>
|
2155 |
+
<li><a href="#tabs-5"><?php esc_html_e('post', 'featured-image-from-url'); ?></a></li>
|
2156 |
+
<li><a href="#tabs-9"><?php esc_html_e('Documentation', 'featured-image-from-url'); ?></a></li>
|
2157 |
</ul>
|
2158 |
<div id="tabs-1">
|
2159 |
<table style="text-align:left">
|
2165 |
</th>
|
2166 |
</tr>
|
2167 |
<tr>
|
2168 |
+
<th><?php esc_html_e('Product', 'featured-image-from-url'); ?></th>
|
2169 |
<th>
|
2170 |
/wp-json/wc/v3/products
|
2171 |
</th>
|
2172 |
</tr>
|
2173 |
<tr>
|
2174 |
+
<th><?php esc_html_e('Product Category', 'featured-image-from-url'); ?></th>
|
2175 |
<th>
|
2176 |
/wp-json/wc/v3/products/categories
|
2177 |
</th>
|
2178 |
</tr>
|
2179 |
<tr>
|
2180 |
+
<th><?php esc_html_e('Product Variation', 'featured-image-from-url'); ?></th>
|
2181 |
<th>
|
2182 |
/wp-json/wc/v3/products/{id}/variations/
|
2183 |
</th>
|
2184 |
</tr>
|
2185 |
<tr>
|
2186 |
+
<th><?php esc_html_e('Batch', 'featured-image-from-url'); ?></th>
|
2187 |
<th>
|
2188 |
/wp-json/wc/v3/products/batch
|
2189 |
</th>
|
2190 |
</tr>
|
2191 |
<tr>
|
2192 |
+
<th><?php esc_html_e('Post', 'featured-image-from-url'); ?></th>
|
2193 |
<th>
|
2194 |
/wp-json/wp/v2/posts
|
2195 |
</th>
|
2196 |
</tr>
|
2197 |
<tr>
|
2198 |
+
<th><?php esc_html_e('Custom Post Type', 'featured-image-from-url'); ?></th>
|
2199 |
<th>
|
2200 |
/wp-json/wp/v2/{post_type}
|
2201 |
</th>
|
2212 |
</th>
|
2213 |
</tr>
|
2214 |
<tr>
|
2215 |
+
<th><?php esc_html_e('Product', 'featured-image-from-url'); ?></th>
|
2216 |
<th>
|
2217 |
/wp-json/wc/v3/products/{id}
|
2218 |
</th>
|
2219 |
</tr>
|
2220 |
<tr>
|
2221 |
+
<th><?php esc_html_e('Product Category', 'featured-image-from-url'); ?></th>
|
2222 |
<th>
|
2223 |
/wp-json/wc/v3/products/categories/{id}
|
2224 |
</th>
|
2225 |
</tr>
|
2226 |
<tr>
|
2227 |
+
<th><?php esc_html_e('Product Variation', 'featured-image-from-url'); ?></th>
|
2228 |
<th>
|
2229 |
/wp-json/wc/v3/products/{id}/variations/{variation_id}
|
2230 |
</th>
|
2231 |
</tr>
|
2232 |
<tr>
|
2233 |
+
<th><?php esc_html_e('Post', 'featured-image-from-url'); ?></th>
|
2234 |
<th>
|
2235 |
/wp-json/wp/v2/posts/{id}
|
2236 |
</th>
|
2237 |
</tr>
|
2238 |
<tr>
|
2239 |
+
<th><?php esc_html_e('Custom Post Type', 'featured-image-from-url'); ?></th>
|
2240 |
<th>
|
2241 |
/wp-json/wp/v2/{post_type}/{id}
|
2242 |
</th>
|
2249 |
<tr>
|
2250 |
<th></th>
|
2251 |
<th>
|
2252 |
+
<?php esc_html_e('Key', 'featured-image-from-url'); ?>
|
2253 |
</th>
|
2254 |
</tr>
|
2255 |
<tr>
|
2256 |
<th>
|
2257 |
+
<?php esc_html_e('Image', 'featured-image-from-url'); ?>
|
2258 |
</th>
|
2259 |
<th>
|
2260 |
fifu_image_url
|
2262 |
</tr>
|
2263 |
<tr>
|
2264 |
<th>
|
2265 |
+
<?php esc_html_e('Image Title', 'featured-image-from-url'); ?>
|
2266 |
</th>
|
2267 |
<th>
|
2268 |
fifu_image_alt
|
2270 |
</tr>
|
2271 |
<tr>
|
2272 |
<th>
|
2273 |
+
<?php esc_html_e('Product Image + Gallery (URLs delimited by "|")', 'featured-image-from-url'); ?>
|
2274 |
</th>
|
2275 |
<th>
|
2276 |
fifu_list_url
|
2278 |
</tr>
|
2279 |
<tr>
|
2280 |
<th>
|
2281 |
+
<?php esc_html_e('Product Image Title + Gallery Titles (delimited by "|")', 'featured-image-from-url'); ?>
|
2282 |
</th>
|
2283 |
<th>
|
2284 |
fifu_list_alt
|
2286 |
</tr>
|
2287 |
<tr>
|
2288 |
<th>
|
2289 |
+
<?php esc_html_e('Video', 'featured-image-from-url'); ?>
|
2290 |
</th>
|
2291 |
<th>
|
2292 |
fifu_video_url
|
2294 |
</tr>
|
2295 |
<tr>
|
2296 |
<th>
|
2297 |
+
<?php esc_html_e('Product Video + Gallery (URLs delimited by "|")', 'featured-image-from-url'); ?>
|
2298 |
</th>
|
2299 |
<th>
|
2300 |
+
fifu_list_video_url
|
2301 |
</th>
|
2302 |
</tr>
|
2303 |
<tr>
|
2304 |
<th>
|
2305 |
+
<?php esc_html_e('Slider', 'featured-image-from-url'); ?>
|
2306 |
</th>
|
2307 |
<th>
|
2308 |
fifu_slider_list_url
|
2361 |
1)
|
2362 |
</th>
|
2363 |
<th>
|
2364 |
+
<a href="https://developer.wordpress.org/rest-api/reference/"><?php esc_html_e('WordPress REST API', 'featured-image-from-url'); ?></a>
|
2365 |
</th>
|
2366 |
</tr>
|
2367 |
<tr>
|
2369 |
2)
|
2370 |
</th>
|
2371 |
<th>
|
2372 |
+
<a href="https://woocommerce.github.io/woocommerce-rest-api-docs/?php#introduction"><?php esc_html_e('WooCommerce REST API', 'featured-image-from-url'); ?></a>
|
2373 |
</th>
|
2374 |
</tr>
|
2375 |
</table>
|
2385 |
</div>
|
2386 |
<div id="tabs-o">
|
2387 |
<div class="box">
|
2388 |
+
<h2><?php esc_html_e('Lightbox and Zoom', 'featured-image-from-url'); ?></h2>
|
2389 |
<div class="greybox">
|
2390 |
+
<?php esc_html_e('Disable lightbox and zoom from image gallery.', 'featured-image-from-url'); ?>
|
2391 |
</div>
|
2392 |
<br>
|
2393 |
<table style="text-align:left">
|
2415 |
</form>
|
2416 |
</th>
|
2417 |
<th>
|
2418 |
+
<?php esc_html_e('lightbox', 'featured-image-from-url'); ?>
|
2419 |
</th>
|
2420 |
</tr>
|
2421 |
<tr>
|
2442 |
</form>
|
2443 |
</th>
|
2444 |
<th>
|
2445 |
+
<?php esc_html_e('zoom', 'featured-image-from-url'); ?>
|
2446 |
</th>
|
2447 |
</tr>
|
2448 |
</table>
|
2450 |
|
2451 |
<a name="category"></a>
|
2452 |
<div class="box">
|
2453 |
+
<h2><?php esc_html_e('Auto Set Category Images', 'featured-image-from-url'); ?></h2>
|
2454 |
<div class="greybox" id="grad2">
|
2455 |
+
<b>Premium</b><br><br>
|
2456 |
+
<?php esc_html_e('Set one image to each category. The chosen image is the Featured Image from the most recent product from that category.', 'featured-image-from-url'); ?>
|
2457 |
</div>
|
2458 |
<br>
|
2459 |
<table style="text-align:left">
|
2466 |
value=""
|
2467 |
style="display:block;border:none">
|
2468 |
</th>
|
|
|
|
|
|
|
2469 |
</tr>
|
2470 |
</table>
|
2471 |
</div>
|
2472 |
|
2473 |
<div class="box">
|
2474 |
+
<h2><?php esc_html_e('Category Image on Grid', 'featured-image-from-url'); ?></h2>
|
2475 |
<div class="greybox">
|
2476 |
+
<?php esc_html_e('Show the category image on the category page, immediately before the product grid.', 'featured-image-from-url'); ?>
|
2477 |
</div>
|
2478 |
<br>
|
2479 |
<table style="text-align:left">
|
2500 |
value="" >
|
2501 |
</form>
|
2502 |
</th>
|
|
|
|
|
|
|
2503 |
</tr>
|
2504 |
</table>
|
2505 |
</div>
|
2507 |
<a name="variable"></a>
|
2508 |
|
2509 |
<div class="box">
|
2510 |
+
<h2><?php esc_html_e('Variable Product', 'featured-image-from-url'); ?></h2>
|
2511 |
<div class="greybox" id="grad2">
|
2512 |
+
<b>Premium</b><br><br>
|
2513 |
+
<?php esc_html_e('Add FIFU fields (Featured Image and Image Gallery) to product variations.', 'featured-image-from-url'); ?>
|
2514 |
<br>
|
2515 |
<br>
|
2516 |
+
<b><?php esc_html_e('Important:', 'featured-image-from-url'); ?></b> <?php esc_html_e('variation image gallery requires', 'featured-image-from-url'); ?> <a href="https://woocommerce.com/products/woocommerce-additional-variation-images/" target="_blank">WooCommerce Additional Variation Images</a>. <?php esc_html_e('Unofficial solutions are not supported', 'featured-image-from-url'); ?>.
|
2517 |
</div>
|
2518 |
<br>
|
2519 |
<table style="text-align:left">
|
2530 |
style="display:block;border:none" >
|
2531 |
</form>
|
2532 |
</th>
|
|
|
|
|
|
|
2533 |
</tr>
|
2534 |
</table>
|
2535 |
</div>
|
2536 |
|
2537 |
<div class="box">
|
2538 |
+
<h2><?php esc_html_e('Import', 'featured-image-from-url'); ?></h2>
|
2539 |
<div class="greybox">
|
2540 |
+
<?php esc_html_e('Use FIFU with WooCommerce import.', 'featured-image-from-url'); ?>
|
2541 |
<br/>
|
2542 |
<br/>
|
2543 |
|
2544 |
<div id="tabsWooImport">
|
2545 |
<ul>
|
2546 |
+
<li><a href="#tabs-3"><?php esc_html_e('Importing products...', 'featured-image-from-url'); ?></a></li>
|
2547 |
+
<li><a href="#tabs-1"><?php esc_html_e('Custom Fields', 'featured-image-from-url'); ?></a></li>
|
2548 |
+
<li><a href="#tabs-2"><?php esc_html_e('Custom Fields', 'featured-image-from-url'); ?> (Premium)</a></li>
|
2549 |
</ul>
|
2550 |
<div id="tabs-1">
|
2551 |
|
2554 |
<th>
|
2555 |
</th>
|
2556 |
<th>
|
2557 |
+
<?php esc_html_e('Key', 'featured-image-from-url'); ?>
|
2558 |
</th>
|
2559 |
</tr>
|
2560 |
<tr>
|
2561 |
<th>
|
2562 |
+
<?php esc_html_e('Image', 'featured-image-from-url'); ?>
|
2563 |
</th>
|
2564 |
<th>
|
2565 |
fifu_image_url
|
2567 |
</tr>
|
2568 |
<tr>
|
2569 |
<th>
|
2570 |
+
<?php esc_html_e('Alt', 'featured-image-from-url'); ?>
|
2571 |
</th>
|
2572 |
<th>
|
2573 |
fifu_image_alt
|
2584 |
<th>
|
2585 |
</th>
|
2586 |
<th>
|
2587 |
+
<?php esc_html_e('Key', 'featured-image-from-url'); ?>
|
2588 |
</th>
|
2589 |
</tr>
|
2590 |
<tr>
|
2591 |
<th>
|
2592 |
+
<?php esc_html_e('Image', 'featured-image-from-url'); ?>
|
2593 |
</th>
|
2594 |
<th>
|
2595 |
fifu_image_url
|
2597 |
</tr>
|
2598 |
<tr>
|
2599 |
<th>
|
2600 |
+
<?php esc_html_e('Alt', 'featured-image-from-url'); ?>
|
2601 |
</th>
|
2602 |
<th>
|
2603 |
fifu_image_alt
|
2605 |
</tr>
|
2606 |
<tr>
|
2607 |
<th>
|
2608 |
+
<?php esc_html_e('Video', 'featured-image-from-url'); ?>
|
2609 |
</th>
|
2610 |
<th>
|
2611 |
fifu_video_url
|
2613 |
</tr>
|
2614 |
<tr>
|
2615 |
<th>
|
2616 |
+
<?php esc_html_e('Image + Image Gallery (URLs delimited by "|")', 'featured-image-from-url'); ?>
|
2617 |
</th>
|
2618 |
<th>
|
2619 |
fifu_list_url
|
2621 |
</tr>
|
2622 |
<tr>
|
2623 |
<th>
|
2624 |
+
<?php esc_html_e('Title + Titles Gallery (delimited by "|")', 'featured-image-from-url'); ?>
|
2625 |
</th>
|
2626 |
<th>
|
2627 |
fifu_list_alt
|
2629 |
</tr>
|
2630 |
<tr>
|
2631 |
<th>
|
2632 |
+
<?php esc_html_e('Video + Video Gallery (URLs delimited by "|")', 'featured-image-from-url'); ?>
|
2633 |
</th>
|
2634 |
<th>
|
2635 |
fifu_list_video_url
|
2637 |
</tr>
|
2638 |
<tr>
|
2639 |
<th>
|
2640 |
+
<?php esc_html_e('Slider (URLs delimited by "|")', 'featured-image-from-url'); ?>
|
2641 |
</th>
|
2642 |
<th>
|
2643 |
fifu_slider_list_url
|
2647 |
</div>
|
2648 |
|
2649 |
<div id="tabs-3">
|
2650 |
+
<a href="<?php echo plugins_url()?>/featured-image-from-url/admin/html/txt/csv-woo.txt"><?php esc_html_e('CSV example', 'featured-image-from-url'); ?></a>
|
2651 |
<br>
|
2652 |
<br>
|
2653 |
<center><img src="https://c1.staticflickr.com/1/216/31480097476_bf4915184b_o_d.jpg" style="width:90%"></center>
|
2658 |
</div>
|
2659 |
<div id="tabs-p">
|
2660 |
<div class="box">
|
2661 |
+
<h2><?php esc_html_e('Add-On', 'featured-image-from-url'); ?></h2>
|
2662 |
<div class="greybox">
|
2663 |
+
<?php esc_html_e('FIFU automatically adds its add-on to WP All Import.', 'featured-image-from-url'); ?>
|
2664 |
<br/>
|
2665 |
<br/>
|
2666 |
<div id="tabsWpAllImport">
|
2667 |
<ul>
|
2668 |
+
<li><a href="#tabs-2"><?php esc_html_e('Importing products...', 'featured-image-from-url'); ?></a></li>
|
2669 |
+
<li><a href="#tabs-1"><?php esc_html_e('Custom Fields', 'featured-image-from-url'); ?></a></li>
|
2670 |
+
<li><a href="#tabs-3"><?php esc_html_e('Custom Fields', 'featured-image-from-url'); ?> (Premium)</a></li>
|
2671 |
+
<li><a href="#tabs-4"><?php esc_html_e('FAQ', 'featured-image-from-url'); ?></a></li>
|
2672 |
</ul>
|
2673 |
<div id="tabs-1">
|
2674 |
|
2677 |
<th>
|
2678 |
</th>
|
2679 |
<th>
|
2680 |
+
<?php esc_html_e('Key', 'featured-image-from-url'); ?>
|
2681 |
</th>
|
2682 |
</tr>
|
2683 |
<tr>
|
2684 |
<th>
|
2685 |
+
<?php esc_html_e('Featured Image URL', 'featured-image-from-url'); ?>
|
2686 |
</th>
|
2687 |
<th>
|
2688 |
fifu_image_url
|
2690 |
</tr>
|
2691 |
<tr>
|
2692 |
<th>
|
2693 |
+
<?php esc_html_e('Featured Image Title', 'featured-image-from-url'); ?>
|
2694 |
</th>
|
2695 |
<th>
|
2696 |
fifu_image_alt
|
2701 |
<br/>
|
2702 |
</div>
|
2703 |
|
2704 |
+
<div id="tabs-3">
|
2705 |
<table style="text-align:left">
|
2706 |
<tr>
|
2707 |
<th>
|
2708 |
</th>
|
2709 |
<th>
|
2710 |
+
<?php esc_html_e('Key', 'featured-image-from-url'); ?>
|
2711 |
</th>
|
2712 |
</tr>
|
2713 |
<tr>
|
2714 |
<th>
|
2715 |
+
<?php esc_html_e('Featured Video URL', 'featured-image-from-url'); ?>
|
2716 |
</th>
|
2717 |
<th>
|
2718 |
fifu_video_url
|
2720 |
</tr>
|
2721 |
<tr>
|
2722 |
<th>
|
2723 |
+
<?php esc_html_e('Featured Image URL + Gallery URLs (delimited by "|")', 'featured-image-from-url'); ?>
|
2724 |
</th>
|
2725 |
<th>
|
2726 |
fifu_list_url
|
2728 |
</tr>
|
2729 |
<tr>
|
2730 |
<th>
|
2731 |
+
<?php esc_html_e('Featured Image Title + Gallery Titles (delimited by "|")', 'featured-image-from-url'); ?>
|
2732 |
</th>
|
2733 |
<th>
|
2734 |
fifu_list_alt
|
2736 |
</tr>
|
2737 |
<tr>
|
2738 |
<th>
|
2739 |
+
<?php esc_html_e('Featured Video URL + Gallery URLs (delimited by "|")', 'featured-image-from-url'); ?>
|
2740 |
</th>
|
2741 |
<th>
|
2742 |
fifu_list_video_url
|
2744 |
</tr>
|
2745 |
<tr>
|
2746 |
<th>
|
2747 |
+
<?php esc_html_e('Featured Slider URLs (delimited by "|")', 'featured-image-from-url'); ?>
|
2748 |
</th>
|
2749 |
<th>
|
2750 |
fifu_slider_list_url
|
2761 |
1)
|
2762 |
</th>
|
2763 |
<th>
|
2764 |
+
<a href="http://www.wpallimport.com/documentation/woocommerce/variable-products/"><?php esc_html_e('Importing Variable Products to WooCommerce', 'featured-image-from-url'); ?></a>
|
2765 |
</th>
|
2766 |
</tr>
|
2767 |
</table>
|
2768 |
</div>
|
2769 |
|
2770 |
+
<div id="tabs-2">
|
2771 |
+
<a href="<?php echo plugins_url()?>/featured-image-from-url/admin/html/txt/csv.txt"><?php esc_html_e('CSV example', 'featured-image-from-url'); ?></a>
|
2772 |
<br>
|
2773 |
<br>
|
2774 |
<img src="https://storage.googleapis.com/featuredimagefromurl/wp-all-import-addon.jpg" style="width:100%">
|
2775 |
<br>
|
2776 |
<br>
|
2777 |
+
<h3><?php esc_html_e('Result:', 'featured-image-from-url'); ?></h3>
|
2778 |
<br>
|
2779 |
<img src="https://storage.googleapis.com/featuredimagefromurl/wp-all-import-result.jpg">
|
2780 |
</div>
|
2784 |
</div>
|
2785 |
<div id="tabs-d">
|
2786 |
<div class="box">
|
2787 |
+
<h2><?php esc_html_e('Fast Support', 'featured-image-from-url'); ?></h2>
|
2788 |
<div class="greybox">
|
2789 |
+
<?php esc_html_e('If you need help, you can refer to', 'featured-image-from-url'); ?> <a href="admin.php?page=featured-image-from-url#tabs-t" target="_blank"><?php esc_html_e('troubleshooting', 'featured-image-from-url'); ?></a> <?php esc_html_e('or send an email to', 'featured-image-from-url'); ?><b> marcel@featuredimagefromurl.com</b> (<?php esc_html_e('with this', 'featured-image-from-url'); ?> <a href="admin.php?page=fifu-support-data"><button id="opener" onclick="jQuery('#tabs-top').block({message: '<?php esc_html_e('Please wait some seconds...', 'fifu - premium'); ?>', css: {backgroundColor: 'none', border: 'none', color: 'white'}});"><?php esc_html_e('status', 'featured-image-from-url'); ?></button></a>).
|
2790 |
<br>
|
2791 |
<br>
|
2792 |
<table style="background-color: #fff; border-radius: 13px;">
|
2803 |
</tr>
|
2804 |
<tr>
|
2805 |
<td style="width:33%;text-align:center;border-bottom: 1px solid #ddd !important">
|
2806 |
+
<i><?php esc_html_e('All my images disappeared', 'featured-image-from-url'); ?></i>
|
2807 |
</td>
|
2808 |
<td style="width:33%;text-align:center;border-bottom: 1px solid #ddd !important">
|
2809 |
+
<i><?php esc_html_e('A famous plugin doesn\'t work with FIFU', 'featured-image-from-url'); ?></i>
|
2810 |
</td>
|
2811 |
<td style="width:33%;text-align:center;border-bottom: 1px solid #ddd !important">
|
2812 |
+
<i><?php esc_html_e('I\'m a developer', 'featured-image-from-url'); ?></i>
|
2813 |
</td>
|
2814 |
</tr>
|
2815 |
<tr>
|
2816 |
<td style="vertical-align: top;">
|
2817 |
+
<?php esc_html_e('You were probably using a deprecated feature. Just do it:', 'featured-image-from-url'); ?>
|
2818 |
+
<?php esc_html_e('1) access Metadata tab;', 'featured-image-from-url'); ?>
|
2819 |
+
<?php esc_html_e('2) enable Clean Metadata (it will be automatically disabled when finished);', 'featured-image-from-url'); ?>
|
2820 |
+
<?php esc_html_e('3) enable Image Metadata.', 'featured-image-from-url'); ?>
|
2821 |
</td>
|
2822 |
<td style="vertical-align: top;">
|
2823 |
+
<?php esc_html_e('Just send me an email. If you are available to discuss the details and the plugin is free and has more than 50,000 active installs, I should provide an integration very soon.', 'featured-image-from-url'); ?>
|
2824 |
</td>
|
2825 |
<td>
|
2826 |
+
<?php esc_html_e('You can set Featured Images using custom fields. The main one is fifu_image_url and you can set that using REST API. For nonstandard automation, enable Schedule Metadata Generation, at Admin tab (no additional code required).', 'featured-image-from-url'); ?>
|
2827 |
</td>
|
2828 |
</tr>
|
2829 |
</table>
|
2837 |
</div>
|
2838 |
</div>
|
2839 |
<div class="box">
|
2840 |
+
<h2><?php esc_html_e('Getting Started', 'featured-image-from-url'); ?></h2>
|
2841 |
<div class="greybox" style="min-height:375px;padding:0 !important">
|
2842 |
<div style="width:100%">
|
2843 |
<hgroup style="float:left;opacity:0.75;" class="speech-bubble">
|
2844 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px;padding-top:10px;"><?php esc_html_e('Hi, I\'m an EXTERNAL image!', 'featured-image-from-url'); ?></div>
|
2845 |
<br>
|
2846 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px"><?php esc_html_e('It means I\'m NOT in your media library and I\'m NOT an attached plugin file too.', 'featured-image-from-url'); ?></div>
|
2847 |
<br>
|
2848 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px"><?php esc_html_e('Don\'t you believe me? So why don\'t you check my Internet address (also known as URL)?', 'featured-image-from-url'); ?></div>
|
2849 |
<br>
|
2850 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"><?php esc_html_e('1) right click me now;', 'featured-image-from-url'); ?></div>
|
2851 |
<br>
|
2852 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"><?php esc_html_e('2) select "Copy image address";', 'featured-image-from-url'); ?></div>
|
2853 |
<br>
|
2854 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"><?php esc_html_e('3) paste it here: ', 'featured-image-from-url'); ?><input type="text" style="width:80%;background-color:#f3f3f3;font-style:italic;" placeholder="<?php esc_html_e('or just drag and drop me here', 'featured-image-from-url'); ?>"></div>
|
2855 |
<br>
|
2856 |
</hgroup>
|
2857 |
+
<img style="float:right;padding-left:1%;width:17%;position:relative;top:19px;filter:grayscale(25%);" src="https://ps.w.org/featured-image-from-url/assets/icon-256x256.png" title="<?php esc_html_e('Right click me!', 'featured-image-from-url'); ?>">
|
2858 |
</div>
|
2859 |
<hgroup style="float:right;opacity:0.75" class="speech-bubble2">
|
2860 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px;padding-top:10px;"><?php esc_html_e('Since now you have my address (also known as URL), how about making me famous?', 'featured-image-from-url'); ?></div>
|
2861 |
<br>
|
2862 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px"><?php esc_html_e('You just need to create a post and use me as the Featured Image:', 'featured-image-from-url'); ?></div>
|
2863 |
<br>
|
2864 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"><?php esc_html_e('1) add a new post;', 'featured-image-from-url'); ?></div>
|
2865 |
<br>
|
2866 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"><?php esc_html_e('2) find the box', 'featured-image-from-url'); ?> <span class="dashicons dashicons-camera" style="font-size:18px;padding-right:3px"></span><b><?php esc_html_e('Featured Image (URL)', 'featured-image-from-url'); ?></b></div>
|
2867 |
<br>
|
2868 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:40px"><?php esc_html_e('3) paste my address into "Image URL" field.', 'featured-image-from-url'); ?></div>
|
2869 |
<br>
|
2870 |
+
<div style="font-style:italic;font-size:13px;color:white;padding-left:25px"><?php esc_html_e('And don\'t worry about storage. I will remain EXTERNAL. I WON\'T be uploaded to your media library.', 'featured-image-from-url'); ?></div>
|
2871 |
<br>
|
2872 |
</hgroup>
|
2873 |
</div>
|
2874 |
</div>
|
2875 |
</div>
|
2876 |
<div id="tabs-t">
|
|
|
|
|
|
|
|
|
|
|
|
|
2877 |
<div class="box">
|
2878 |
<table>
|
2879 |
<tr>
|
admin/html/meta-box-shortcode.html
CHANGED
@@ -3,6 +3,6 @@
|
|
3 |
type="text"
|
4 |
name="fifu_shortcode_input"
|
5 |
value=""
|
6 |
-
style="<?php echo $width
|
7 |
disabled
|
8 |
-
placeholder="[ Shortcode ] (Premium)"/>
|
3 |
type="text"
|
4 |
name="fifu_shortcode_input"
|
5 |
value=""
|
6 |
+
style="<?php echo $width?>;font-size:13px;"
|
7 |
disabled
|
8 |
+
placeholder="[ <?php esc_html_e('Shortcode') ?> ] (Premium)"/>
|
admin/html/meta-box-slider.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<input id="fifu_slider_input_url_<?php echo $i; ?>"
|
2 |
type="text"
|
3 |
name="fifu_slider_input_url_<?php echo $i; ?>"
|
4 |
-
placeholder="Image URL (Premium)"
|
5 |
value=""
|
6 |
disabled
|
7 |
-
style="<?php echo $width
|
1 |
<input id="fifu_slider_input_url_<?php echo $i; ?>"
|
2 |
type="text"
|
3 |
name="fifu_slider_input_url_<?php echo $i; ?>"
|
4 |
+
placeholder="<?php esc_html_e('Image URL') ?> (Premium)"
|
5 |
value=""
|
6 |
disabled
|
7 |
+
style="<?php echo $width ?>;font-size:13px;" />
|
admin/html/meta-box-video.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<input id="fifu_video_input_url"
|
2 |
type="text"
|
3 |
name="fifu_video_input_url"
|
4 |
-
placeholder="Video URL (Premium)"
|
5 |
value=""
|
6 |
disabled
|
7 |
-
style="<?php echo $width, $margin
|
1 |
<input id="fifu_video_input_url"
|
2 |
type="text"
|
3 |
name="fifu_video_input_url"
|
4 |
+
placeholder="<?php esc_html_e('Video URL', 'featured-image-from-url') ?> (Premium)"
|
5 |
value=""
|
6 |
disabled
|
7 |
+
style="<?php echo $width, $margin ?>;font-size:13px;" />
|
admin/html/meta-box.html
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
<input type="checkbox" name="fifu_ignore_auto_set" id="fifu_ignore_auto_set">
|
9 |
</th>
|
10 |
<th>
|
11 |
-
<label for="fifu_ignore_auto_set" style="font-weight:normal"
|
12 |
</th>
|
13 |
</tr>
|
14 |
</table>
|
@@ -19,7 +19,7 @@
|
|
19 |
<input type="checkbox" name="fifu_giphy_checkbox" id="fifu_giphy_checkbox" disabled>
|
20 |
</th>
|
21 |
<th>
|
22 |
-
<label for="fifu_giphy_checkbox" style="font-weight:normal;color:#cccccc"
|
23 |
</th>
|
24 |
</tr>
|
25 |
</table>
|
@@ -27,9 +27,9 @@
|
|
27 |
<input id="fifu_input_alt"
|
28 |
type="text"
|
29 |
name="fifu_input_alt"
|
30 |
-
placeholder="alt/title attribute (optional)"
|
31 |
value="<?php echo $alt; ?>"
|
32 |
-
style="<?php echo $width, $show_alt
|
33 |
|
34 |
<div id="fifu_image"
|
35 |
style="<?php echo $height, $show_image ?>
|
@@ -44,24 +44,20 @@
|
|
44 |
<input id="fifu_input_url"
|
45 |
type="text"
|
46 |
name="fifu_input_url"
|
47 |
-
placeholder="Image URL or Keywords"
|
48 |
value="<?php echo $url; ?>"
|
49 |
-
style="<?php echo $width
|
50 |
</td>
|
51 |
<td>
|
52 |
<span id="fifu_help"
|
53 |
-
title="
|
54 |
-
-Example of image URL: http...
|
55 |
-
-Example of keywords: sea,sun
|
56 |
-
To get a random image leave this field empty.
|
57 |
-
"
|
58 |
class="dashicons dashicons-editor-help"
|
59 |
style="<?php echo $show_button . ';font-size:20px' ?>">
|
60 |
</span>
|
61 |
|
62 |
<span
|
63 |
id="fifu_next"
|
64 |
-
title="Next"
|
65 |
class="dashicons dashicons-arrow-right-alt"
|
66 |
style="font-size:25px;cursor:pointer;display:none">
|
67 |
</span>
|
@@ -73,7 +69,7 @@
|
|
73 |
<a id="fifu_link"
|
74 |
href="#"
|
75 |
onClick="removeImage();"
|
76 |
-
style="<?php echo $show_link ?>"
|
77 |
</center>
|
78 |
|
79 |
<input
|
@@ -99,7 +95,7 @@
|
|
99 |
<a id="fifu_button"
|
100 |
class="button"
|
101 |
onClick="previewImage();"
|
102 |
-
style="<?php echo $align, $margin, $show_button ?>"
|
103 |
|
104 |
<div id="fifu_sirv_button" style="<?php echo 'float:left;padding-right:8px;' . $align, $margin, fifu_is_sirv_active() ? $show_button : 'display:none' ?>">
|
105 |
<div class="sirv-modal"></div>
|
@@ -107,7 +103,7 @@
|
|
107 |
data-input-anchor="#fifu_input_url"
|
108 |
href="#"
|
109 |
class="button sirv-add-image-modal-click"
|
110 |
-
title="Add image from Sirv"
|
111 |
</div>
|
112 |
|
113 |
</div>
|
8 |
<input type="checkbox" name="fifu_ignore_auto_set" id="fifu_ignore_auto_set">
|
9 |
</th>
|
10 |
<th>
|
11 |
+
<label for="fifu_ignore_auto_set" style="font-weight:normal"><?php esc_html_e('ignore URL from Post Content', 'featured-image-from-url'); ?></label>
|
12 |
</th>
|
13 |
</tr>
|
14 |
</table>
|
19 |
<input type="checkbox" name="fifu_giphy_checkbox" id="fifu_giphy_checkbox" disabled>
|
20 |
</th>
|
21 |
<th>
|
22 |
+
<label for="fifu_giphy_checkbox" style="font-weight:normal;color:#cccccc"><?php esc_html_e('Giphy search', 'featured-image-from-url'); ?> (Premium)</label>
|
23 |
</th>
|
24 |
</tr>
|
25 |
</table>
|
27 |
<input id="fifu_input_alt"
|
28 |
type="text"
|
29 |
name="fifu_input_alt"
|
30 |
+
placeholder="<?php esc_html_e('alt/title attribute (optional)', 'featured-image-from-url'); ?>"
|
31 |
value="<?php echo $alt; ?>"
|
32 |
+
style="<?php echo $width, $show_alt ?>;font-size:13px;" />
|
33 |
|
34 |
<div id="fifu_image"
|
35 |
style="<?php echo $height, $show_image ?>
|
44 |
<input id="fifu_input_url"
|
45 |
type="text"
|
46 |
name="fifu_input_url"
|
47 |
+
placeholder="<?php esc_html_e('Image URL or Keywords', 'featured-image-from-url'); ?>"
|
48 |
value="<?php echo $url; ?>"
|
49 |
+
style="<?php echo $width ?>;font-size:13px;" />
|
50 |
</td>
|
51 |
<td>
|
52 |
<span id="fifu_help"
|
53 |
+
title="<?php esc_html_e('Examples: image URL: https://domain.com/image.jpg; keywords: sea,sun. To get a random image leave this field empty.', 'featured-image-from-url'); ?>"
|
|
|
|
|
|
|
|
|
54 |
class="dashicons dashicons-editor-help"
|
55 |
style="<?php echo $show_button . ';font-size:20px' ?>">
|
56 |
</span>
|
57 |
|
58 |
<span
|
59 |
id="fifu_next"
|
60 |
+
title="<?php esc_html_e('Next'); ?>"
|
61 |
class="dashicons dashicons-arrow-right-alt"
|
62 |
style="font-size:25px;cursor:pointer;display:none">
|
63 |
</span>
|
69 |
<a id="fifu_link"
|
70 |
href="#"
|
71 |
onClick="removeImage();"
|
72 |
+
style="<?php echo $show_link ?>" ><?php esc_html_e('remove external featured image', 'featured-image-from-url'); ?></a>
|
73 |
</center>
|
74 |
|
75 |
<input
|
95 |
<a id="fifu_button"
|
96 |
class="button"
|
97 |
onClick="previewImage();"
|
98 |
+
style="<?php echo $align, $margin, $show_button ?>" ><?php esc_html_e('Preview') ?></a>
|
99 |
|
100 |
<div id="fifu_sirv_button" style="<?php echo 'float:left;padding-right:8px;' . $align, $margin, fifu_is_sirv_active() ? $show_button : 'display:none' ?>">
|
101 |
<div class="sirv-modal"></div>
|
103 |
data-input-anchor="#fifu_input_url"
|
104 |
href="#"
|
105 |
class="button sirv-add-image-modal-click"
|
106 |
+
title="<?php esc_html_e('Add image from Sirv', 'featured-image-from-url'); ?>"><?php esc_html_e('Choose Sirv image', 'featured-image-from-url'); ?></a>
|
107 |
</div>
|
108 |
|
109 |
</div>
|
admin/html/woo-meta-box-video.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<input id="fifu_video_input_url_<?php echo $i; ?>"
|
2 |
type="text"
|
3 |
name="fifu_video_input_url_<?php echo $i; ?>"
|
4 |
-
placeholder="Video URL (Premium)"
|
5 |
value=""
|
6 |
disabled
|
7 |
-
style="<?php echo $width
|
1 |
<input id="fifu_video_input_url_<?php echo $i; ?>"
|
2 |
type="text"
|
3 |
name="fifu_video_input_url_<?php echo $i; ?>"
|
4 |
+
placeholder="<?php esc_html_e('Video URL', 'featured-image-from-url') ?> (Premium)"
|
5 |
value=""
|
6 |
disabled
|
7 |
+
style="<?php echo $width ?>;font-size:13px;" />
|
admin/html/woo-meta-box.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<input id="fifu_input_url_<?php echo $i; ?>"
|
2 |
type="text"
|
3 |
name="fifu_input_url_<?php echo $i; ?>"
|
4 |
-
placeholder="Image URL (Premium)"
|
5 |
value=""
|
6 |
disabled
|
7 |
-
style="<?php echo $width, $margin
|
1 |
<input id="fifu_input_url_<?php echo $i; ?>"
|
2 |
type="text"
|
3 |
name="fifu_input_url_<?php echo $i; ?>"
|
4 |
+
placeholder="<?php esc_html_e('Image URL') ?> (Premium)"
|
5 |
value=""
|
6 |
disabled
|
7 |
+
style="<?php echo $width, $margin?>;font-size:13px;" />
|
admin/menu.php
CHANGED
@@ -16,8 +16,8 @@ function fifu_insert_menu() {
|
|
16 |
}
|
17 |
|
18 |
add_menu_page('Featured Image from URL', 'Featured Image from URL', 'manage_options', 'featured-image-from-url', 'fifu_get_menu_html', 'dashicons-camera', 57);
|
19 |
-
add_submenu_page('featured-image-from-url', 'FIFU Settings', 'Settings', 'manage_options', 'featured-image-from-url');
|
20 |
-
add_submenu_page('featured-image-from-url', 'FIFU
|
21 |
|
22 |
add_action('admin_init', 'fifu_get_menu_settings');
|
23 |
}
|
@@ -88,6 +88,7 @@ function fifu_get_menu_html() {
|
|
88 |
'restUrl' => esc_url_raw(rest_url()),
|
89 |
'homeUrl' => esc_url_raw(home_url()),
|
90 |
'nonce' => wp_create_nonce('wp_rest'),
|
|
|
91 |
]);
|
92 |
|
93 |
$enable_social = get_option('fifu_social');
|
16 |
}
|
17 |
|
18 |
add_menu_page('Featured Image from URL', 'Featured Image from URL', 'manage_options', 'featured-image-from-url', 'fifu_get_menu_html', 'dashicons-camera', 57);
|
19 |
+
add_submenu_page('featured-image-from-url', 'FIFU Settings', __('Settings'), 'manage_options', 'featured-image-from-url');
|
20 |
+
add_submenu_page('featured-image-from-url', 'FIFU Status', __('Status'), 'manage_options', 'fifu-support-data', 'fifu_support_data');
|
21 |
|
22 |
add_action('admin_init', 'fifu_get_menu_settings');
|
23 |
}
|
88 |
'restUrl' => esc_url_raw(rest_url()),
|
89 |
'homeUrl' => esc_url_raw(home_url()),
|
90 |
'nonce' => wp_create_nonce('wp_rest'),
|
91 |
+
'wait' => esc_html__('Please wait some seconds...', 'featured-image-from-url'),
|
92 |
]);
|
93 |
|
94 |
$enable_social = get_option('fifu_social');
|
admin/meta-box.php
CHANGED
@@ -3,21 +3,22 @@
|
|
3 |
add_action('add_meta_boxes', 'fifu_insert_meta_box');
|
4 |
|
5 |
function fifu_insert_meta_box() {
|
|
|
6 |
$post_types = fifu_get_post_types();
|
7 |
|
8 |
foreach ($post_types as $post_type) {
|
9 |
if ($post_type == 'product') {
|
10 |
-
add_meta_box('urlMetaBox', '<span class="dashicons dashicons-camera" style="font-size:20px"></span> Product Image
|
11 |
-
add_meta_box('wooCommerceGalleryMetaBox', '<span class="dashicons dashicons-format-gallery" style="font-size:20px"></span> Image Gallery
|
12 |
-
add_meta_box('videoUrlMetaBox', '<span class="dashicons dashicons-video-alt3" style="font-size:20px"></span> Featured Video
|
13 |
-
add_meta_box('wooCommerceVideoGalleryMetaBox', '<span class="dashicons dashicons-format-video" style="font-size:20px"></span> Video Gallery
|
14 |
-
add_meta_box('sliderImageUrlMetaBox', '<span class="dashicons dashicons-images-alt2" style="font-size:20px"></span> Featured Slider
|
15 |
-
add_meta_box('shortCodeMetaBox', '<span class="dashicons dashicons-editor-code" style="font-size:20px"></span> Featured Shortcode', 'fifu_shortcode_show_elements', $post_type, 'side', 'low');
|
16 |
} else if ($post_type) {
|
17 |
-
add_meta_box('imageUrlMetaBox', '<span class="dashicons dashicons-camera" style="font-size:20px"></span> Featured Image
|
18 |
-
add_meta_box('videoUrlMetaBox', '<span class="dashicons dashicons-video-alt3" style="font-size:20px"></span> Featured Video
|
19 |
-
add_meta_box('sliderImageUrlMetaBox', '<span class="dashicons dashicons-images-alt2" style="font-size:20px"></span> Featured Slider
|
20 |
-
add_meta_box('shortCodeMetaBox', '<span class="dashicons dashicons-editor-code" style="font-size:20px"></span> Featured Shortcode', 'fifu_shortcode_show_elements', $post_type, 'side', 'low');
|
21 |
}
|
22 |
}
|
23 |
fifu_register_meta_box_script();
|
@@ -37,6 +38,7 @@ function fifu_register_meta_box_script() {
|
|
37 |
wp_localize_script('fifu-meta-box-js', 'fifuMetaBoxVars', [
|
38 |
'get_the_ID' => get_the_ID(),
|
39 |
'is_sirv_active' => fifu_is_sirv_active(),
|
|
|
40 |
]);
|
41 |
}
|
42 |
|
@@ -262,10 +264,10 @@ function fifu_variation_settings_fields($loop, $variation_data, $variation) {
|
|
262 |
'id' => "fifu_image_url{$loop}",
|
263 |
'name' => "fifu_image_url[{$loop}]",
|
264 |
'value' => get_post_meta($variation->ID, 'fifu_image_url', true),
|
265 |
-
'label' => __('<span class="dashicons dashicons-camera" style="font-size:20px"></span> Product Image
|
266 |
'desc_tip' => true,
|
267 |
-
'description' =>
|
268 |
-
'placeholder' => 'Image URL (Premium)',
|
269 |
'wrapper_class' => 'form-row form-row-full',
|
270 |
)
|
271 |
);
|
@@ -276,10 +278,10 @@ function fifu_variation_settings_fields($loop, $variation_data, $variation) {
|
|
276 |
'id' => "fifu_image_url_" . $i . "{$loop}",
|
277 |
'name' => "fifu_image_url_" . $i . "[{$loop}]",
|
278 |
'value' => get_post_meta($variation->ID, 'fifu_image_url_' . $i, true),
|
279 |
-
'label' => __('<span class="dashicons dashicons-format-gallery" style="font-size:20px"></span>
|
280 |
'desc_tip' => true,
|
281 |
-
'description' =>
|
282 |
-
'placeholder' => 'Image URL (Premium)',
|
283 |
'wrapper_class' => 'form-row form-row-full',
|
284 |
)
|
285 |
);
|
3 |
add_action('add_meta_boxes', 'fifu_insert_meta_box');
|
4 |
|
5 |
function fifu_insert_meta_box() {
|
6 |
+
fifu_languages();
|
7 |
$post_types = fifu_get_post_types();
|
8 |
|
9 |
foreach ($post_types as $post_type) {
|
10 |
if ($post_type == 'product') {
|
11 |
+
add_meta_box('urlMetaBox', '<span class="dashicons dashicons-camera" style="font-size:20px"></span> ' . esc_html__('Product Image (URL)', 'featured-image-from-url'), 'fifu_show_elements', $post_type, 'side', 'low');
|
12 |
+
add_meta_box('wooCommerceGalleryMetaBox', '<span class="dashicons dashicons-format-gallery" style="font-size:20px"></span> ' . esc_html__('Image Gallery (URL)', 'featured-image-from-url'), 'fifu_wc_show_elements', $post_type, 'side', 'low');
|
13 |
+
add_meta_box('videoUrlMetaBox', '<span class="dashicons dashicons-video-alt3" style="font-size:20px"></span> ' . esc_html__('Featured Video (URL)', 'featured-image-from-url'), 'fifu_video_show_elements', $post_type, 'side', 'low');
|
14 |
+
add_meta_box('wooCommerceVideoGalleryMetaBox', '<span class="dashicons dashicons-format-video" style="font-size:20px"></span> ' . esc_html__('Video Gallery (URL)', 'featured-image-from-url'), 'fifu_video_wc_show_elements', $post_type, 'side', 'low');
|
15 |
+
add_meta_box('sliderImageUrlMetaBox', '<span class="dashicons dashicons-images-alt2" style="font-size:20px"></span> ' . esc_html__('Featured Slider (URL)', 'featured-image-from-url'), 'fifu_slider_show_elements', $post_type, 'side', 'low');
|
16 |
+
add_meta_box('shortCodeMetaBox', '<span class="dashicons dashicons-editor-code" style="font-size:20px"></span> ' . esc_html__('Featured Shortcode', 'featured-image-from-url'), 'fifu_shortcode_show_elements', $post_type, 'side', 'low');
|
17 |
} else if ($post_type) {
|
18 |
+
add_meta_box('imageUrlMetaBox', '<span class="dashicons dashicons-camera" style="font-size:20px;padding-right:10px"></span> ' . esc_html__('Featured Image (URL)', 'featured-image-from-url'), 'fifu_show_elements', $post_type, 'side', 'low');
|
19 |
+
add_meta_box('videoUrlMetaBox', '<span class="dashicons dashicons-video-alt3" style="font-size:20px;padding-right:10px"></span> ' . esc_html__('Featured Video (URL)', 'featured-image-from-url'), $post_type, 'side', 'low');
|
20 |
+
add_meta_box('sliderImageUrlMetaBox', '<span class="dashicons dashicons-images-alt2" style="font-size:20px;padding-right:10px"></span> ' . esc_html__('Featured Slider (URL)', 'featured-image-from-url'), 'fifu_slider_show_elements', $post_type, 'side', 'low');
|
21 |
+
add_meta_box('shortCodeMetaBox', '<span class="dashicons dashicons-editor-code" style="font-size:20px;padding-right:10px"></span> ' . esc_html__('Featured Shortcode', 'featured-image-from-url'), 'fifu_shortcode_show_elements', $post_type, 'side', 'low');
|
22 |
}
|
23 |
}
|
24 |
fifu_register_meta_box_script();
|
38 |
wp_localize_script('fifu-meta-box-js', 'fifuMetaBoxVars', [
|
39 |
'get_the_ID' => get_the_ID(),
|
40 |
'is_sirv_active' => fifu_is_sirv_active(),
|
41 |
+
'wait' => esc_html__('Please wait some seconds...', 'featured-image-from-url'),
|
42 |
]);
|
43 |
}
|
44 |
|
264 |
'id' => "fifu_image_url{$loop}",
|
265 |
'name' => "fifu_image_url[{$loop}]",
|
266 |
'value' => get_post_meta($variation->ID, 'fifu_image_url', true),
|
267 |
+
'label' => __('<span class="dashicons dashicons-camera" style="font-size:20px"></span> ' . esc_html__('Product Image (URL)', 'featured-image-from-url'), 'woocommerce'),
|
268 |
'desc_tip' => true,
|
269 |
+
'description' => esc_html__('Powered by Featured Image from URL plugin', 'featured-image-from-url'),
|
270 |
+
'placeholder' => esc_html__('Image URL') . ' (Premium)',
|
271 |
'wrapper_class' => 'form-row form-row-full',
|
272 |
)
|
273 |
);
|
278 |
'id' => "fifu_image_url_" . $i . "{$loop}",
|
279 |
'name' => "fifu_image_url_" . $i . "[{$loop}]",
|
280 |
'value' => get_post_meta($variation->ID, 'fifu_image_url_' . $i, true),
|
281 |
+
'label' => __('<span class="dashicons dashicons-format-gallery" style="font-size:20px"></span> ' . esc_html__('Gallery Image (URL)', 'featured-image-from-url') . ' #' . ($i + 1), 'woocommerce'),
|
282 |
'desc_tip' => true,
|
283 |
+
'description' => esc_html__('Requires WooCommerce Additional Variation Images plugin', 'featured-image-from-url'),
|
284 |
+
'placeholder' => esc_html__('Image URL') . ' (Premium)',
|
285 |
'wrapper_class' => 'form-row form-row-full',
|
286 |
)
|
287 |
);
|
admin/wai-addon.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
include 'rapid-addon.php';
|
4 |
-
|
5 |
$fifu_wai_addon = new RapidAddon('<div style="color:#777"><span class="dashicons dashicons-camera" style="font-size:30px;padding-right:10px"></span> Featured Image from URL</div>', 'fifu_wai_addon');
|
6 |
-
$fifu_wai_addon->add_field('fifu_image_url', '<div title="fifu_image_url">Featured Image URL</div>', 'text', null, null, false, null);
|
7 |
-
$fifu_wai_addon->add_field('fifu_image_alt', '<div title="fifu_image_alt">Featured Image
|
8 |
$fifu_wai_addon->set_import_function('fifu_wai_addon_save');
|
9 |
$fifu_wai_addon->run();
|
10 |
|
1 |
<?php
|
2 |
|
3 |
include 'rapid-addon.php';
|
4 |
+
fifu_languages();
|
5 |
$fifu_wai_addon = new RapidAddon('<div style="color:#777"><span class="dashicons dashicons-camera" style="font-size:30px;padding-right:10px"></span> Featured Image from URL</div>', 'fifu_wai_addon');
|
6 |
+
$fifu_wai_addon->add_field('fifu_image_url', '<div title="fifu_image_url">' . __('Featured Image (URL)', 'featured-image-from-url') . '</div>', 'text', null, null, false, null);
|
7 |
+
$fifu_wai_addon->add_field('fifu_image_alt', '<div title="fifu_image_alt">' . __('Featured Image Title', 'featured-image-from-url') . '</div>', 'text', null, null, false, null);
|
8 |
$fifu_wai_addon->set_import_function('fifu_wai_addon_save');
|
9 |
$fifu_wai_addon->run();
|
10 |
|
featured-image-from-url.php
CHANGED
@@ -4,11 +4,13 @@
|
|
4 |
* Plugin Name: Featured Image from URL
|
5 |
* Plugin URI: https://fifu.app/
|
6 |
* Description: Use an external image as Featured Image of a post or WooCommerce product. Includes Image Search, Video, Social Tags, SEO, Lazy Load, Gallery, Automation etc.
|
7 |
-
* Version: 3.1.
|
8 |
-
* Author:
|
9 |
* Author URI: https://fifu.app/
|
10 |
* WC requires at least: 3.0
|
11 |
-
* WC tested up to: 4.2.
|
|
|
|
|
12 |
*/
|
13 |
|
14 |
define('FIFU_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
@@ -71,9 +73,13 @@ add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'fifu_action_link
|
|
71 |
add_filter('network_admin_plugin_action_links_' . plugin_basename(__FILE__), 'fifu_action_links');
|
72 |
|
73 |
function fifu_action_links($links) {
|
74 |
-
$links[] = '<a href="' . esc_url(get_admin_url(null, 'admin.php?page=featured-image-from-url')) . '">Settings</a>';
|
75 |
-
$links[] = '<a style="color:black">Support
|
76 |
$links[] = '<br><center style="width:275px;color:white;background-color:#02a0d2;border-radius:0px 30px">marcel@featuredimagefromurl.com</center>';
|
77 |
return $links;
|
78 |
}
|
79 |
|
|
|
|
|
|
|
|
4 |
* Plugin Name: Featured Image from URL
|
5 |
* Plugin URI: https://fifu.app/
|
6 |
* Description: Use an external image as Featured Image of a post or WooCommerce product. Includes Image Search, Video, Social Tags, SEO, Lazy Load, Gallery, Automation etc.
|
7 |
+
* Version: 3.1.4
|
8 |
+
* Author: fifu.app
|
9 |
* Author URI: https://fifu.app/
|
10 |
* WC requires at least: 3.0
|
11 |
+
* WC tested up to: 4.2.2
|
12 |
+
* Text Domain: featured-image-from-url
|
13 |
+
* Domain Path: /languages
|
14 |
*/
|
15 |
|
16 |
define('FIFU_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
73 |
add_filter('network_admin_plugin_action_links_' . plugin_basename(__FILE__), 'fifu_action_links');
|
74 |
|
75 |
function fifu_action_links($links) {
|
76 |
+
$links[] = '<a href="' . esc_url(get_admin_url(null, 'admin.php?page=featured-image-from-url')) . '">' . esc_html__('Settings', 'featured-image-from-url') . '</a>';
|
77 |
+
$links[] = '<a style="color:black">' . esc_html__('Support') . ':</a>';
|
78 |
$links[] = '<br><center style="width:275px;color:white;background-color:#02a0d2;border-radius:0px 30px">marcel@featuredimagefromurl.com</center>';
|
79 |
return $links;
|
80 |
}
|
81 |
|
82 |
+
function fifu_languages() {
|
83 |
+
load_plugin_textdomain('featured-image-from-url', false, basename(dirname(__FILE__)) . '/languages');
|
84 |
+
}
|
85 |
+
|
includes/thumbnail.php
CHANGED
@@ -51,6 +51,7 @@ function fifu_add_social_tag_yoast_list($object) {
|
|
51 |
function fifu_add_social_tags() {
|
52 |
$post_id = get_the_ID();
|
53 |
$url = fifu_main_image_url($post_id);
|
|
|
54 |
$title = str_replace("'", "'", get_the_title($post_id));
|
55 |
$description = str_replace("'", "'", wp_strip_all_tags(get_post_field('post_excerpt', $post_id)));
|
56 |
|
51 |
function fifu_add_social_tags() {
|
52 |
$post_id = get_the_ID();
|
53 |
$url = fifu_main_image_url($post_id);
|
54 |
+
$url = $url ? $url : get_the_post_thumbnail_url($post_id);
|
55 |
$title = str_replace("'", "'", get_the_title($post_id));
|
56 |
$description = str_replace("'", "'", wp_strip_all_tags(get_post_field('post_excerpt', $post_id)));
|
57 |
|
languages/featured-image-from-url-pt_BR.mo
ADDED
Binary file
|
languages/featured-image-from-url-pt_BR.po
ADDED
@@ -0,0 +1,1368 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2020 Featured Image from URL
|
2 |
+
# This file is distributed under the same license as the Featured Image from URL plugin.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Featured Image from URL 3.1.4\n"
|
6 |
+
"Report-Msgid-Bugs-To: marcel@featuredimagefromurl.com\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: Português do Brasil\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2020-06-26T18:49:47-03:00\n"
|
13 |
+
"PO-Revision-Date: 2020-06-28 15:46+0000\n"
|
14 |
+
"X-Generator: Loco https://localise.biz/\n"
|
15 |
+
"X-Domain: featured-image-from-url\n"
|
16 |
+
"Language: pt_BR\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18 |
+
"X-Loco-Version: 2.4.0; wp-5.4.2"
|
19 |
+
|
20 |
+
#. Description of the plugin
|
21 |
+
msgid ""
|
22 |
+
"Use an external image as Featured Image of a post or WooCommerce product. "
|
23 |
+
"Includes Image Search, Video, Social Tags, SEO, Lazy Load, Gallery, "
|
24 |
+
"Automation etc."
|
25 |
+
msgstr ""
|
26 |
+
"Utilize uma imagem externa como Imagem Destacada de um post ou produto "
|
27 |
+
"WooCommerce. Inclui pesquisa de imagens, vídeo, tags sociais, SEO, Lazy Load,"
|
28 |
+
" galeria, automação etc."
|
29 |
+
|
30 |
+
msgid "1) access Metadata tab;"
|
31 |
+
msgstr "1) acesse a aba Metadados;"
|
32 |
+
|
33 |
+
msgid "1) add a new post;"
|
34 |
+
msgstr "1) adicione um novo post;"
|
35 |
+
|
36 |
+
msgid "1) right click me now;"
|
37 |
+
msgstr "1) clique com o botão direito em mim agora;"
|
38 |
+
|
39 |
+
msgid ""
|
40 |
+
"2) enable Clean Metadata (it will be automatically disabled when finished);"
|
41 |
+
msgstr ""
|
42 |
+
"2) ative Limpar Metadados (será desativado automaticamente quando terminar);"
|
43 |
+
|
44 |
+
msgid "2) select \"Copy image address\";"
|
45 |
+
msgstr "2) selecione \"Copiar endereço da imagem\";"
|
46 |
+
|
47 |
+
msgid "315 Degrees"
|
48 |
+
msgstr "315 Graus"
|
49 |
+
|
50 |
+
msgid "360 Degrees"
|
51 |
+
msgstr "360 graus"
|
52 |
+
|
53 |
+
msgid "3) enable Image Metadata."
|
54 |
+
msgstr "3) ative Metadados de Imagem."
|
55 |
+
|
56 |
+
msgid "3) paste my address into \"Image URL\" field."
|
57 |
+
msgstr "3) cole meu endereço no campo \"URL da Imagem\"."
|
58 |
+
|
59 |
+
msgid "Add Class"
|
60 |
+
msgstr "Adicionar Classe"
|
61 |
+
|
62 |
+
msgid ""
|
63 |
+
"Add FIFU fields (Featured Image and Image Gallery) to product variations."
|
64 |
+
msgstr ""
|
65 |
+
"Adicionar campos do FIFU (Imagem Destacada e Galeria de Imagens) às "
|
66 |
+
"variações do produto."
|
67 |
+
|
68 |
+
msgid "Add icons to the video thumbnails in the WooCommerce gallery."
|
69 |
+
msgstr "Adicionar ícones aos thumbnails de vídeo na galeria do WooCommerce."
|
70 |
+
|
71 |
+
msgid ""
|
72 |
+
"Add Media RSS tags in the RSS feed. This way, services that make use of RSS, "
|
73 |
+
"such as Google News, can show the Featured Images."
|
74 |
+
msgstr ""
|
75 |
+
"Adicione tags Media RSS ao feed RSS. Dessa forma, serviços que usam RSS, "
|
76 |
+
"como o Google Notícias, podem exibir as Imagens Destacadas."
|
77 |
+
|
78 |
+
msgid "Add-On"
|
79 |
+
msgstr "Extensão"
|
80 |
+
|
81 |
+
msgid ""
|
82 |
+
"Add play button to video thumbnail. Clicking on that, the video starts "
|
83 |
+
"inline or in a lightbox."
|
84 |
+
msgstr ""
|
85 |
+
"Adicionar o botão play ao thumbnail de vídeo. Clicando no botão, o vídeo "
|
86 |
+
"começa em modo inline ou lightbox."
|
87 |
+
|
88 |
+
msgid "add social tags"
|
89 |
+
msgstr "adicionar tags sociais"
|
90 |
+
|
91 |
+
msgid ""
|
92 |
+
"Add some FIFU parameters to your image URLs. It only makes sense when you "
|
93 |
+
"have a theme (or plugin) that calls the image URLs in a nonstandard way, "
|
94 |
+
"what could break some FIFU features, such as Video, Slider, Shortcode, Add "
|
95 |
+
"Class, Lazy Load and Same Height > Object Fit."
|
96 |
+
msgstr ""
|
97 |
+
"Adicionar alguns parâmetros do FIFU aos URLs de imagem. Isso só faz sentido "
|
98 |
+
"quando você tem um tema (ou plugin) que chama os URLs de imagem de maneira "
|
99 |
+
"fora do padrão, o que pode quebrar algumas funcionalidades do FIFU, como "
|
100 |
+
"Vídeo, Slider, Shortcode, Adicionar Classe, Lazy Load e Mesma Altura> Ajuste "
|
101 |
+
"do Objeto."
|
102 |
+
|
103 |
+
msgid "Add the class \"fifu-class\" to the Featured Image tags."
|
104 |
+
msgstr "Adicionar a classe \"fifu-class\" às tags de Imagens Destacadas."
|
105 |
+
|
106 |
+
msgid "Admin"
|
107 |
+
msgstr "Administrador"
|
108 |
+
|
109 |
+
msgid "A famous plugin doesn't work with FIFU"
|
110 |
+
msgstr "Um famoso plugin não funciona com FIFU"
|
111 |
+
|
112 |
+
msgid "All my images disappeared"
|
113 |
+
msgstr "Todas as minhas imagens desapareceram"
|
114 |
+
|
115 |
+
msgid "All Posts"
|
116 |
+
msgstr "Todos os Posts"
|
117 |
+
|
118 |
+
msgid "Alt"
|
119 |
+
msgstr "Alt"
|
120 |
+
|
121 |
+
msgid "Title + Titles Gallery (delimited by \"|\")"
|
122 |
+
msgstr "Título + Títulos da Galeria (delimitados por \"|\")"
|
123 |
+
|
124 |
+
msgid "alt/title attribute (optional)"
|
125 |
+
msgstr "atributo alt/title (opcional)"
|
126 |
+
|
127 |
+
msgid ""
|
128 |
+
"always use the post title as image title (it will ignore FIFU alt/title "
|
129 |
+
"field)"
|
130 |
+
msgstr ""
|
131 |
+
"sempre utilizar o título do post como título da imagem (o campo alt/title do "
|
132 |
+
"FIFU será ignorado)"
|
133 |
+
|
134 |
+
msgid ""
|
135 |
+
"And don't worry about storage. I will remain EXTERNAL. I WON'T be uploaded "
|
136 |
+
"to your media library."
|
137 |
+
msgstr ""
|
138 |
+
"E não se preocupe com armazenamento. Eu permanecerei EXTERNA. Não serei "
|
139 |
+
"salva na sua biblioteca de mídia."
|
140 |
+
|
141 |
+
msgid "and you want a 4:3 size ratio"
|
142 |
+
msgstr "e você quer uma proporção de tamanho 4:3"
|
143 |
+
|
144 |
+
msgid "archive"
|
145 |
+
msgstr "arquivo"
|
146 |
+
|
147 |
+
msgid "attribute"
|
148 |
+
msgstr "atributo"
|
149 |
+
|
150 |
+
msgid "Autoplay"
|
151 |
+
msgstr "Reprodução Automática"
|
152 |
+
|
153 |
+
msgid "Autoplay videos (available for YouTube and Vimeo)."
|
154 |
+
msgstr "Reprodução automática de vídeos (disponível para YouTube e Vimeo)."
|
155 |
+
|
156 |
+
msgid "Auto Set Category Images"
|
157 |
+
msgstr "Definição Automática de Imagem de Categoria"
|
158 |
+
|
159 |
+
msgid "Auto Set Image Title"
|
160 |
+
msgstr "Definição Automática do Título da Imagem"
|
161 |
+
|
162 |
+
msgid "Background Video"
|
163 |
+
msgstr "Vídeo de Fundo"
|
164 |
+
|
165 |
+
msgid "batch"
|
166 |
+
msgstr "lote"
|
167 |
+
|
168 |
+
msgid "Batch"
|
169 |
+
msgstr "Lote"
|
170 |
+
|
171 |
+
msgid "Black Background"
|
172 |
+
msgstr "Fundo Preto"
|
173 |
+
|
174 |
+
msgid "Blur"
|
175 |
+
msgstr "Borrão"
|
176 |
+
|
177 |
+
msgid "Blur Gray Scale"
|
178 |
+
msgstr "Borrão em Branco e Preto"
|
179 |
+
|
180 |
+
msgid "Brighten"
|
181 |
+
msgstr "Iluminado"
|
182 |
+
|
183 |
+
msgid "cart"
|
184 |
+
msgstr "carrinho"
|
185 |
+
|
186 |
+
msgid "category"
|
187 |
+
msgstr "categoria"
|
188 |
+
|
189 |
+
msgid "Category Image on Grid"
|
190 |
+
msgstr "Imagem de Categoria na Grid"
|
191 |
+
|
192 |
+
msgid "Check for updates"
|
193 |
+
msgstr "Verificar atualizações"
|
194 |
+
|
195 |
+
msgid "Choose a hover effect to be applied to the Featured Images on home."
|
196 |
+
msgstr ""
|
197 |
+
"Escolha um efeito de transição para ser aplicado às Imagens Destacadas da "
|
198 |
+
"página inicial."
|
199 |
+
|
200 |
+
msgid "Choose Sirv image"
|
201 |
+
msgstr "Escolher uma Imagem do Sirv"
|
202 |
+
|
203 |
+
msgid "Choose the number of fields you have in the post editor."
|
204 |
+
msgstr "Escolha a quantidade de campos no editor."
|
205 |
+
|
206 |
+
msgid ""
|
207 |
+
"Choose the size of the Unsplash images (loaded randomly or via keywords "
|
208 |
+
"search). Examples of valid sizes: 500x500, 300x400, 1920x1080... Or leave "
|
209 |
+
"this field empty to get the original size."
|
210 |
+
msgstr ""
|
211 |
+
"Escolha o tamanho das imagens do Unsplash (carregadas aleatoriamente ou por "
|
212 |
+
"meio de pesquisa por palavras-chave). Exemplos de tamanhos válidos: 500x500, "
|
213 |
+
"300x400, 1920x1080 ... Ou deixe este campo em branco para obter o tamanho "
|
214 |
+
"original."
|
215 |
+
|
216 |
+
msgid "Chrome Extension Available"
|
217 |
+
msgstr "Extensão do Chrome Disponível"
|
218 |
+
|
219 |
+
msgid "Circle"
|
220 |
+
msgstr "Círculo"
|
221 |
+
|
222 |
+
msgid "Clean Metadata"
|
223 |
+
msgstr "Limpar Metadados"
|
224 |
+
|
225 |
+
msgid "clean the dimensions of all Featured Images now"
|
226 |
+
msgstr "limpar as dimensões de todas as Imagens Destacadas agora"
|
227 |
+
|
228 |
+
msgid ""
|
229 |
+
"Clean the Image Metadata generated by FIFU, but not the URLs. This option "
|
230 |
+
"might be necessary if you intend to deactivate the plugin and use only "
|
231 |
+
"internal Featured Images again."
|
232 |
+
msgstr ""
|
233 |
+
"Permite limpar os Metadados de Imagem gerados pelo FIFU, mas não os URLs. "
|
234 |
+
"Esta opção pode ser necessária se você deseja desativar o plugin e utilizar "
|
235 |
+
"apenas Imagens Destacadas internas novamente."
|
236 |
+
|
237 |
+
msgid "color"
|
238 |
+
msgstr "cor"
|
239 |
+
|
240 |
+
msgid "Configuration"
|
241 |
+
msgstr "Configuração"
|
242 |
+
|
243 |
+
msgid "confirm that you are ready to lose your Featured Images"
|
244 |
+
msgstr "confirme que você está pronto para perder suas Imagens Destacadas"
|
245 |
+
|
246 |
+
msgid ""
|
247 |
+
"copy the post title to FIFU alt/title field (it has effect when you click on "
|
248 |
+
"Publish button in the post editor)"
|
249 |
+
msgstr ""
|
250 |
+
"copiar o título do post para o campo alt/title do FIFU (isso acontecerá "
|
251 |
+
"quando você clicar no botão Publicar do editor)"
|
252 |
+
|
253 |
+
msgid "Creating your first product"
|
254 |
+
msgstr "Criando seu primeiro produto"
|
255 |
+
|
256 |
+
msgid ""
|
257 |
+
"crops the images (the options center, top and bottom will be available in "
|
258 |
+
"the post editor);"
|
259 |
+
msgstr ""
|
260 |
+
"recorta as imagens (as opções central, superior e inferior estarão "
|
261 |
+
"disponíveis no editor);"
|
262 |
+
|
263 |
+
msgid "CSS selectors (optional)"
|
264 |
+
msgstr "Seletores CSS (opcional)"
|
265 |
+
|
266 |
+
msgid "CSS Style"
|
267 |
+
msgstr "Estilo CSS"
|
268 |
+
|
269 |
+
msgid "CSV example"
|
270 |
+
msgstr "Exemplo de CSV"
|
271 |
+
|
272 |
+
msgid "Custom Fields"
|
273 |
+
msgstr "Campos Personalizados"
|
274 |
+
|
275 |
+
msgid "Custom Post Type"
|
276 |
+
msgstr "Tipo Personalizado"
|
277 |
+
|
278 |
+
msgid "Database"
|
279 |
+
msgstr "Base de Dados"
|
280 |
+
|
281 |
+
msgid "Default Featured Image"
|
282 |
+
msgstr "Imagem Destacada Padrão"
|
283 |
+
|
284 |
+
msgid "Define a CSS style to be applied to the Featured Images. Example:"
|
285 |
+
msgstr "Defina um estilo de CSS a ser aplicado às Imagens Destacadas. Exemplo:"
|
286 |
+
|
287 |
+
msgid ""
|
288 |
+
"Define a minimum width that a theme area should have to show a video. FIFU "
|
289 |
+
"automatically shows a thumbnail when the minimum width is not reached."
|
290 |
+
msgstr ""
|
291 |
+
"Defina uma largura mínima que uma área do tema deve ter para que o vídeo "
|
292 |
+
"seja exibido. Quando a largura mínima não for atingida, FIFU automaticamente "
|
293 |
+
"mostrará o thumbnail do vídeo."
|
294 |
+
|
295 |
+
msgid "Define the slider settings here."
|
296 |
+
msgstr "Defina as configurações do slider aqui."
|
297 |
+
|
298 |
+
msgid ""
|
299 |
+
"Define the URL of a default image to be shown when you create (or update) a "
|
300 |
+
"post with no Featured Image."
|
301 |
+
msgstr ""
|
302 |
+
"Defina o URL de uma imagem padrão a ser exibida ao se criar (ou atualizar) "
|
303 |
+
"um post sem Imagem Destacada."
|
304 |
+
|
305 |
+
msgid ""
|
306 |
+
"Define the URL of an image to be shown in case of image not found error."
|
307 |
+
msgstr ""
|
308 |
+
"Defina o URL de uma imagem a ser mostrada em caso de erro por imagem não "
|
309 |
+
"encontrada."
|
310 |
+
|
311 |
+
msgid "deforms the images."
|
312 |
+
msgstr "deforma as imagens."
|
313 |
+
|
314 |
+
msgid "Delay"
|
315 |
+
msgstr "Atraso"
|
316 |
+
|
317 |
+
msgid "Delete All URLs"
|
318 |
+
msgstr "Excluir Todos os URLs"
|
319 |
+
|
320 |
+
msgid "delete all your URLs now"
|
321 |
+
msgstr "excluir todos os seus URLs agora"
|
322 |
+
|
323 |
+
msgid "Disable lightbox and zoom from image gallery."
|
324 |
+
msgstr "Desative o lightbox e o zoom na galeria de imagens."
|
325 |
+
|
326 |
+
msgid "Documentation"
|
327 |
+
msgstr "Documentação"
|
328 |
+
|
329 |
+
msgid ""
|
330 |
+
"Don't you believe me? So why don't you check my Internet address (also known "
|
331 |
+
"as URL)?"
|
332 |
+
msgstr ""
|
333 |
+
"Você não acredita em mim? Então por que você não verifica meu endereço na "
|
334 |
+
"Internet (também conhecido como URL)?"
|
335 |
+
|
336 |
+
msgid "e.g.: 16:9"
|
337 |
+
msgstr "exemplo: 16:9"
|
338 |
+
|
339 |
+
msgid "e.g.: 300"
|
340 |
+
msgstr "exemplo: 300"
|
341 |
+
|
342 |
+
msgid "e.g.: 600"
|
343 |
+
msgstr "ex.: 600"
|
344 |
+
|
345 |
+
msgid "e.g.: 64"
|
346 |
+
msgstr "exemplo: 64"
|
347 |
+
|
348 |
+
msgid "Email"
|
349 |
+
msgstr "E-mail"
|
350 |
+
|
351 |
+
msgid "Email address where you received the license key"
|
352 |
+
msgstr "Endereço de e-mail em que você recebeu a chave do produto"
|
353 |
+
|
354 |
+
msgid "Endpoints"
|
355 |
+
msgstr "Endpoints"
|
356 |
+
|
357 |
+
msgid "Examples of selectors..."
|
358 |
+
msgstr "Exemplos de seletores ..."
|
359 |
+
|
360 |
+
msgid "Examples of valid size ratios: 3:2, 16:9, 1:1..."
|
361 |
+
msgstr "Exemplos de proporções de tamanho válidos: 3:2, 16:9, 1:1 ..."
|
362 |
+
|
363 |
+
msgid "fade effect"
|
364 |
+
msgstr "efeito de transição"
|
365 |
+
|
366 |
+
msgid "FAQ"
|
367 |
+
msgstr "Perguntas Frequentes"
|
368 |
+
|
369 |
+
msgid "Fast Support"
|
370 |
+
msgstr "Suporte Rápido"
|
371 |
+
|
372 |
+
msgid "Featured Image"
|
373 |
+
msgstr "Imagem Destacada"
|
374 |
+
|
375 |
+
msgid "Featured Image Title"
|
376 |
+
msgstr "Título da Imagem Destacada"
|
377 |
+
|
378 |
+
msgid "Featured Image Title + Gallery Titles (delimited by \"|\")"
|
379 |
+
msgstr ""
|
380 |
+
"Título da Imagem Destacada + Títulos da Galeria (delimitados por \"|\")"
|
381 |
+
|
382 |
+
msgid "Featured Image Title + Gallery Titles"
|
383 |
+
msgstr "Título da Imagem Destacada + Títulos da Galeria"
|
384 |
+
|
385 |
+
msgid "Featured Image Column"
|
386 |
+
msgstr "Coluna Imagem Destacada"
|
387 |
+
|
388 |
+
msgid "Featured Image in Content"
|
389 |
+
msgstr "Imagem Destacada no Conteúdo"
|
390 |
+
|
391 |
+
msgid "Featured Image (URL)"
|
392 |
+
msgstr "Imagem Destacada (URL)"
|
393 |
+
|
394 |
+
msgid "Featured Image URL"
|
395 |
+
msgstr "URL da Imagem Destacada"
|
396 |
+
|
397 |
+
msgid "Featured Image URL + Gallery URLs (delimited by \"|\")"
|
398 |
+
msgstr "URL da Imagem Destacada + URLs da Galeria (delimitados por \"|\")"
|
399 |
+
|
400 |
+
msgid "Featured Image URL + Gallery URLs"
|
401 |
+
msgstr "URL da Imagem Destacada + URLs da Galeria"
|
402 |
+
|
403 |
+
msgid "Featured Shortcode"
|
404 |
+
msgstr "Shortcode Destacado"
|
405 |
+
|
406 |
+
msgid "Featured Slider"
|
407 |
+
msgstr "Slider Destacado"
|
408 |
+
|
409 |
+
msgid "Featured Slider (URL)"
|
410 |
+
msgstr "Slider Destacado (URL)"
|
411 |
+
|
412 |
+
msgid "Featured Slider (URLs)"
|
413 |
+
msgstr "Slider Destacado (URLs)"
|
414 |
+
|
415 |
+
msgid "Featured Slider URLs (delimited by \"|\")"
|
416 |
+
msgstr "URLs do Slider Destacado (delimitados por \"|\")"
|
417 |
+
|
418 |
+
msgid "Featured Video"
|
419 |
+
msgstr "Vídeo Destacado"
|
420 |
+
|
421 |
+
msgid "Featured Video (URL)"
|
422 |
+
msgstr "Vídeo Destacado (URL)"
|
423 |
+
|
424 |
+
msgid "Featured Video URL"
|
425 |
+
msgstr "URL do Vídeo Destacado"
|
426 |
+
|
427 |
+
msgid "Featured Video URL + Gallery URLs (delimited by \"|\")"
|
428 |
+
msgstr "URL do Vídeo Destacado + URLs da Galeria (delimitados por \"|\")"
|
429 |
+
|
430 |
+
msgid "Featured Video URL + Gallery URLs"
|
431 |
+
msgstr "URL do Vídeo Destacado + URLs da Galeria"
|
432 |
+
|
433 |
+
msgid "FIFU automatically adds its add-on to WP All Import."
|
434 |
+
msgstr "FIFU automaticamente adiciona sua extensão ao WP All Import."
|
435 |
+
|
436 |
+
msgid ""
|
437 |
+
"FIFU supports videos from YouTube, Vimeo, Imgur, 9GAG, Cloudinary, Tumblr "
|
438 |
+
"and Publitio (videos hosted elsewhere are not supported)."
|
439 |
+
msgstr ""
|
440 |
+
"FIFU suporta vídeos do YouTube, Vimeo, Imgur, 9GAG, Cloudinary, Tumblr e "
|
441 |
+
"Publitio (vídeos hospedados em outros lugares não são suportados)."
|
442 |
+
|
443 |
+
msgid "Flashing"
|
444 |
+
msgstr "Flash"
|
445 |
+
|
446 |
+
msgid "follow redirects (it will make the process slower)"
|
447 |
+
msgstr "seguir redirecionamentos (isso tornará o processo mais lento)"
|
448 |
+
|
449 |
+
msgid "for Vimeo videos"
|
450 |
+
msgstr "para vídeos do Vimeo"
|
451 |
+
|
452 |
+
msgid "for YouTube videos"
|
453 |
+
msgstr "para vídeos do YouTube"
|
454 |
+
|
455 |
+
msgid "Gallery Fields"
|
456 |
+
msgstr "Campos de Galeria"
|
457 |
+
|
458 |
+
msgid "Gallery Icon"
|
459 |
+
msgstr "Ícone da Galeria"
|
460 |
+
|
461 |
+
msgid "Getting Flickr URL"
|
462 |
+
msgstr "Obtendo o URL do Flickr"
|
463 |
+
|
464 |
+
msgid "Getting Started"
|
465 |
+
msgstr "Começando"
|
466 |
+
|
467 |
+
msgid "Giphy search"
|
468 |
+
msgstr "pesquisar no Giphy"
|
469 |
+
|
470 |
+
msgid "Giphy Search"
|
471 |
+
msgstr "Pesquisa Giphy"
|
472 |
+
|
473 |
+
msgid "Gray Scale"
|
474 |
+
msgstr "Escala de Cinza"
|
475 |
+
|
476 |
+
msgid "Help"
|
477 |
+
msgstr "Ajuda"
|
478 |
+
|
479 |
+
msgid "here"
|
480 |
+
msgstr "aqui"
|
481 |
+
|
482 |
+
msgid "Hide Featured Media"
|
483 |
+
msgstr "Ocultar Mídia Destacada"
|
484 |
+
|
485 |
+
msgid "hide from grid"
|
486 |
+
msgstr "ocultar na grid"
|
487 |
+
|
488 |
+
msgid "hide the 1st (or nth) image (or video) from content"
|
489 |
+
msgstr "ocultar a primeira (ou a enésima) imagem (ou vídeo) do conteúdo"
|
490 |
+
|
491 |
+
msgid ""
|
492 |
+
"Hide the Featured Media (Image, Video or Slider) on posts but keeping its "
|
493 |
+
"visibility on home."
|
494 |
+
msgstr ""
|
495 |
+
"Ocultar a Mídia Destacada (Imagem, Vídeo ou Slider) nos posts, mas mantendo-"
|
496 |
+
"a visível na página inicial."
|
497 |
+
|
498 |
+
msgid "Hi, I'm an EXTERNAL image!"
|
499 |
+
msgstr "Olá, sou uma imagem EXTERNA!"
|
500 |
+
|
501 |
+
msgid "home"
|
502 |
+
msgstr "página inicial"
|
503 |
+
|
504 |
+
msgid "Horizontal Rotation"
|
505 |
+
msgstr "Rotação Horizontal"
|
506 |
+
|
507 |
+
msgid "Hover Effects"
|
508 |
+
msgstr "Efeitos de Transição"
|
509 |
+
|
510 |
+
msgid ""
|
511 |
+
"If for some reason jQuery is missing from your site, which is not commom, "
|
512 |
+
"you can import that from a CDN."
|
513 |
+
msgstr ""
|
514 |
+
"Se, por algum motivo, o jQuery estiver ausente no seu site, o que não é "
|
515 |
+
"comum, você poderá importá-lo de uma CDN."
|
516 |
+
|
517 |
+
msgid ""
|
518 |
+
"If you are setting the image URLs in a nonstandard way, the images probably "
|
519 |
+
"won't be shown at front-end because some extra metadata is required. Here "
|
520 |
+
"you can schedule an event to run each N minutes and check if there is some "
|
521 |
+
"image URL without metadata and create that. The FIFU keys are listed on WP "
|
522 |
+
"All Import > Custom Fields."
|
523 |
+
msgstr ""
|
524 |
+
"Se você estiver salvado os URLs de imagem de maneira incomum, provavelmente "
|
525 |
+
"as imagens não serão exibidas no front-end, pois são necessários alguns "
|
526 |
+
"metadados adicionais. Aqui, você pode agendar um evento para executar a cada "
|
527 |
+
"N minutos e verificar se há algum URL de imagem sem metadados e criá-los. Os "
|
528 |
+
"campos chave do FIFU estão listados em WP All Import > Campos Personalizados."
|
529 |
+
|
530 |
+
msgid ""
|
531 |
+
"if you have activated your license key for a development site before and now "
|
532 |
+
"you want to activate that for this main site, contact the support too"
|
533 |
+
msgstr ""
|
534 |
+
"se você ativou sua chave do produto para um site de testes e agora deseja "
|
535 |
+
"ativá-la neste site principal, entre em contato com o suporte também"
|
536 |
+
|
537 |
+
msgid ""
|
538 |
+
"If you have different sizes of images on your home (or shop), enable the "
|
539 |
+
"toggle below to show them in the same height. Depending on your theme, it "
|
540 |
+
"may be necessary to use a Selector to inform where is the group of images "
|
541 |
+
"that you want to resize. "
|
542 |
+
msgstr ""
|
543 |
+
"Se você tiver tamanhos diferentes de imagens em sua página inicial (ou loja),"
|
544 |
+
" poderá ativar a opção abaixo para mostrá-las com a mesma altura. Dependendo "
|
545 |
+
"do seu tema, pode ser necessário usar um Seletor para informar onde está o "
|
546 |
+
"grupo de imagens que você deseja redimensionar."
|
547 |
+
|
548 |
+
msgid "if your domain has changed, please contact the support"
|
549 |
+
msgstr "se seu domínio mudou, entre em contato com o suporte"
|
550 |
+
|
551 |
+
msgid "ignore posts that already have a Featured Image (or video)"
|
552 |
+
msgstr "ignorar posts que já tenham uma Imagem Destacada (ou vídeo)"
|
553 |
+
|
554 |
+
msgid "ignore URL from Post Content"
|
555 |
+
msgstr "ignorar URL no Conteúdo"
|
556 |
+
|
557 |
+
msgid "I'm a developer"
|
558 |
+
msgstr "Sou um desenvolvedor"
|
559 |
+
|
560 |
+
msgid "Image"
|
561 |
+
msgstr "Imagem"
|
562 |
+
|
563 |
+
msgid "Image Title"
|
564 |
+
msgstr "Título da Imagem"
|
565 |
+
|
566 |
+
msgid "Image Gallery:"
|
567 |
+
msgstr "Galeria de Imagens:"
|
568 |
+
|
569 |
+
msgid "Image Gallery (URL)"
|
570 |
+
msgstr "Galeria de Imagens (URL)"
|
571 |
+
|
572 |
+
msgid "Image + Image Gallery (URLs delimited by \"|\")"
|
573 |
+
msgstr "Imagem + Galeria de Imagens (URLs delimitados por \"|\")"
|
574 |
+
|
575 |
+
msgid "Image Metadata"
|
576 |
+
msgstr "Metadados de Imagem"
|
577 |
+
|
578 |
+
msgid "image (or video) position"
|
579 |
+
msgstr "posição da imagem (ou vídeo)"
|
580 |
+
|
581 |
+
msgid "Image URL or Keywords"
|
582 |
+
msgstr "URL da imagem ou Palavras-Chave"
|
583 |
+
|
584 |
+
msgid "Image Validation"
|
585 |
+
msgstr "Validação de Imagem"
|
586 |
+
|
587 |
+
msgid "Import"
|
588 |
+
msgstr "Importação"
|
589 |
+
|
590 |
+
msgid "Important:"
|
591 |
+
msgstr "Importante:"
|
592 |
+
|
593 |
+
msgid "Importing products..."
|
594 |
+
msgstr "Importando produtos..."
|
595 |
+
|
596 |
+
msgid "Importing Variable Products to WooCommerce"
|
597 |
+
msgstr "Como importar Produtos Variáveis para o WooCommerce"
|
598 |
+
|
599 |
+
msgid "import jQuery from a CDN"
|
600 |
+
msgstr "importar jQuery de uma CDN"
|
601 |
+
|
602 |
+
msgid "inline"
|
603 |
+
msgstr "inline"
|
604 |
+
|
605 |
+
msgid ""
|
606 |
+
"In order to FIFU identify your gallery, it's necessary to inform its CSS "
|
607 |
+
"selector here. The default value is %1$s, but you may need a different "
|
608 |
+
"selector if your theme overwrites the original WooCommerce layout."
|
609 |
+
msgstr ""
|
610 |
+
"Para que FIFU identifique sua galeria, é necessário informar seu seletor de "
|
611 |
+
"CSS aqui. O valor padrão é %1$s, mas você pode precisar de um seletor "
|
612 |
+
"diferente caso o seu tema substitua o layout original do WooCommerce."
|
613 |
+
|
614 |
+
msgid "Interval (minutes)"
|
615 |
+
msgstr "Intervalo (minutos)"
|
616 |
+
|
617 |
+
msgid "It can take some minutes and can't be undone, so make a backup."
|
618 |
+
msgstr ""
|
619 |
+
"Isso pode levar alguns minutos e não pode ser desfeito, portanto faça um "
|
620 |
+
"backup."
|
621 |
+
|
622 |
+
msgid ""
|
623 |
+
"It checks images addresses and, when an image is not found, its URL is not "
|
624 |
+
"saved. However, each validation can take some seconds. It is not integrated "
|
625 |
+
"with URL from Post Content or REST API features."
|
626 |
+
msgstr ""
|
627 |
+
"Verifica os endereços das imagens e, quando uma imagem não é encontrada, seu "
|
628 |
+
"URL não é salvo. No entanto, cada validação pode levar alguns segundos. Não "
|
629 |
+
"está integrada às funcionalidades URL no Conteúdo e API REST."
|
630 |
+
|
631 |
+
msgid ""
|
632 |
+
"It means I'm NOT in your media library and I'm NOT an attached plugin file "
|
633 |
+
"too."
|
634 |
+
msgstr ""
|
635 |
+
"Isso significa que NÃO estou na sua biblioteca de mídia e também NÃO sou um "
|
636 |
+
"arquivo anexado do plugin."
|
637 |
+
|
638 |
+
msgid ""
|
639 |
+
"It reads the HTML of your post and use the 1st image (or video) URL found as "
|
640 |
+
"Featured Image. It happens when you click on Publish (or Update) button."
|
641 |
+
msgstr ""
|
642 |
+
"Permite ao plugin ler o HTML do post e utilizar o 1º URL de imagem (ou vídeo)"
|
643 |
+
" encontrado como Imagem Destacada. Isso acontece quando você clica no botão "
|
644 |
+
"Publicar (ou Atualizar)."
|
645 |
+
|
646 |
+
msgid "it will be automatically disabled when finished"
|
647 |
+
msgstr "será desativado automaticamente quando terminar"
|
648 |
+
|
649 |
+
msgid "jQuery"
|
650 |
+
msgstr "jQuery"
|
651 |
+
|
652 |
+
msgid ""
|
653 |
+
"Just send me an email. If you are available to discuss the details and the "
|
654 |
+
"plugin is free and has more than 50,000 active installs, I should provide an "
|
655 |
+
"integration very soon."
|
656 |
+
msgstr ""
|
657 |
+
"Apenas me envie um email. Se você estiver disponível para discutir os "
|
658 |
+
"detalhes e o plugin for gratuito e tiver mais de 50.000 instalações ativas, "
|
659 |
+
"eu devo fornecer uma integração muito em breve."
|
660 |
+
|
661 |
+
msgid "Key"
|
662 |
+
msgstr "Chave"
|
663 |
+
|
664 |
+
msgid "Lazy Load"
|
665 |
+
msgstr "Lazy Load"
|
666 |
+
|
667 |
+
msgid "License Key"
|
668 |
+
msgstr "Chave do Produto"
|
669 |
+
|
670 |
+
msgid "lightbox"
|
671 |
+
msgstr "lightbox"
|
672 |
+
|
673 |
+
msgid "Lightbox and Zoom"
|
674 |
+
msgstr "Lightbox e Zoom"
|
675 |
+
|
676 |
+
msgid ""
|
677 |
+
"Limit of rows to UPDATE, INSERT or DELETE by query. Higher this number, "
|
678 |
+
"faster the features URL from Post Content > All Posts, Image Metadata and "
|
679 |
+
"Clean Metadata. However, if you have too limited resources, don't increase "
|
680 |
+
"this value too much, otherwise your database can bring down."
|
681 |
+
msgstr ""
|
682 |
+
"Limite de registros por UPDATE, INSERT ou DELETE. Quanto maior esse número, "
|
683 |
+
"mais rápido serão as funcionalidades URL no Conteúdo > Todos os Posts, "
|
684 |
+
"Metadados de Imagem e Limpar Metadados. No entanto, se você tiver recursos "
|
685 |
+
"muito limitados, não aumente muito este valor, caso contrário, seu banco de "
|
686 |
+
"dados poderá cair."
|
687 |
+
|
688 |
+
msgid "Loop"
|
689 |
+
msgstr "Loop"
|
690 |
+
|
691 |
+
msgid "Loop videos (available for YouTube and Vimeo)."
|
692 |
+
msgstr "Vídeos em loop (disponível para YouTube e Vimeo)."
|
693 |
+
|
694 |
+
msgid "Media Library"
|
695 |
+
msgstr "Biblioteca de Mídia"
|
696 |
+
|
697 |
+
msgid "Media RSS Tags"
|
698 |
+
msgstr "Tags Media RSS"
|
699 |
+
|
700 |
+
msgid "Metadata"
|
701 |
+
msgstr "Metadados"
|
702 |
+
|
703 |
+
msgid "Minimum Width"
|
704 |
+
msgstr "Largura Mínima"
|
705 |
+
|
706 |
+
msgid "minimum width (px)"
|
707 |
+
msgstr "largura mínima (px)"
|
708 |
+
|
709 |
+
msgid "mode"
|
710 |
+
msgstr "modo"
|
711 |
+
|
712 |
+
msgid ""
|
713 |
+
"Most themes and plugins are not able to show the external Featured Image if "
|
714 |
+
"there is no internal Featured Image associated to your post. Enabling the "
|
715 |
+
"toggle below, symbolic empty files will be added to your Media Library to "
|
716 |
+
"overcome this limitation."
|
717 |
+
msgstr ""
|
718 |
+
"A maioria dos temas e plugins não consegue mostrar a Imagem Destacada "
|
719 |
+
"externa se não houver uma Imagem Destacada interna associada ao post. "
|
720 |
+
"Ativando a opção abaixo, arquivos simbólicos vazios serão adicionados à sua "
|
721 |
+
"Biblioteca de Mídia para superar essa limitação."
|
722 |
+
|
723 |
+
msgid "Mouseover Autoplay"
|
724 |
+
msgstr "Reprodução Automática na Passagem do Mouse"
|
725 |
+
|
726 |
+
msgid "Mute"
|
727 |
+
msgstr "Mudo"
|
728 |
+
|
729 |
+
msgid "new version available."
|
730 |
+
msgstr "nova versão disponível."
|
731 |
+
|
732 |
+
msgid "Object Fit"
|
733 |
+
msgstr "Ajuste do Objeto"
|
734 |
+
|
735 |
+
msgid "OK"
|
736 |
+
msgstr "OK"
|
737 |
+
|
738 |
+
msgid "on custom post type"
|
739 |
+
msgstr "no tipo personalizado"
|
740 |
+
|
741 |
+
msgid "on home (or shop)"
|
742 |
+
msgstr "na página inicial (ou loja)"
|
743 |
+
|
744 |
+
msgid "only image tags"
|
745 |
+
msgstr "somente tags de imagem"
|
746 |
+
|
747 |
+
msgid "on page"
|
748 |
+
msgstr "na página"
|
749 |
+
|
750 |
+
msgid "on post"
|
751 |
+
msgstr "no post"
|
752 |
+
|
753 |
+
msgid "Opacity Color"
|
754 |
+
msgstr "Opacidade com Cor"
|
755 |
+
|
756 |
+
msgid "Opacity White"
|
757 |
+
msgstr "Opacidade Branca"
|
758 |
+
|
759 |
+
msgid "original size"
|
760 |
+
msgstr "tamanho original"
|
761 |
+
|
762 |
+
msgid "Original Size"
|
763 |
+
msgstr "Tamanho Original"
|
764 |
+
|
765 |
+
msgid "or just drag and drop me here"
|
766 |
+
msgstr "ou apenas arraste e solte-me aqui"
|
767 |
+
|
768 |
+
msgid "overwrite the existing Featured Image (or video)"
|
769 |
+
msgstr "substituir a Imagem Destacada existente (ou vídeo)"
|
770 |
+
|
771 |
+
msgid "page"
|
772 |
+
msgstr "página"
|
773 |
+
|
774 |
+
msgid "pause autoplay on hover"
|
775 |
+
msgstr "pausar a reprodução automática na passagem do mouse"
|
776 |
+
|
777 |
+
msgid "Performance"
|
778 |
+
msgstr "Performance"
|
779 |
+
|
780 |
+
msgid "Play a video on \"mouseover\" and pause on \"mouseout\"."
|
781 |
+
msgstr "Reproduzir e pausar um vídeo na passagem do mouse"
|
782 |
+
|
783 |
+
msgid "Play Button"
|
784 |
+
msgstr "Botão Play"
|
785 |
+
|
786 |
+
msgid ""
|
787 |
+
"Please insert your email and license key below to use this plugin without "
|
788 |
+
"limitations."
|
789 |
+
msgstr ""
|
790 |
+
"Favor inserir seu e-mail e chave do produto abaixo para usar este plugin sem "
|
791 |
+
"limitações."
|
792 |
+
|
793 |
+
msgid "Please wait some seconds..."
|
794 |
+
msgstr "Aguarde alguns segundos..."
|
795 |
+
|
796 |
+
msgid "plugin is up to date."
|
797 |
+
msgstr "o plugin está atualizado."
|
798 |
+
|
799 |
+
msgid "post"
|
800 |
+
msgstr "post"
|
801 |
+
|
802 |
+
msgid "Post"
|
803 |
+
msgstr "Post"
|
804 |
+
|
805 |
+
msgid "Powered by Featured Image from URL plugin"
|
806 |
+
msgstr "Desenvolvido por Featured Image from URL"
|
807 |
+
|
808 |
+
msgid "prioritize video than image (if both exist)"
|
809 |
+
msgstr "priorizar vídeo à imagem (se ambos existirem)"
|
810 |
+
|
811 |
+
msgid "product"
|
812 |
+
msgstr "produto"
|
813 |
+
|
814 |
+
msgid "Product"
|
815 |
+
msgstr "Produto"
|
816 |
+
|
817 |
+
msgid "product category"
|
818 |
+
msgstr "categoria de produto"
|
819 |
+
|
820 |
+
msgid "Product Category"
|
821 |
+
msgstr "Categoria de Produto"
|
822 |
+
|
823 |
+
msgid "Product Image Title + Gallery Titles (delimited by \"|\")"
|
824 |
+
msgstr ""
|
825 |
+
"Título da Imagem do Produto + Títulos da Galeria (delimitados por \"|\")"
|
826 |
+
|
827 |
+
msgid "Product Image + Gallery (URLs delimited by \"|\")"
|
828 |
+
msgstr "Imagem do Produto + Galeria (URLs delimitados por \"|\")"
|
829 |
+
|
830 |
+
msgid "Product Image (URL)"
|
831 |
+
msgstr "Imagem do Produto (URL)"
|
832 |
+
|
833 |
+
msgid "variable product"
|
834 |
+
msgstr "produto variável"
|
835 |
+
|
836 |
+
msgid "product variation"
|
837 |
+
msgstr "variação de produto"
|
838 |
+
|
839 |
+
msgid "Product Variation"
|
840 |
+
msgstr "Variação de Produto"
|
841 |
+
|
842 |
+
msgid "Product Video + Gallery (URLs delimited by \"|\")"
|
843 |
+
msgstr "Vídeo do Produto + Galeria (URLs delimitados por \"|\")"
|
844 |
+
|
845 |
+
msgid "Rainbow"
|
846 |
+
msgstr "Arco-Íris"
|
847 |
+
|
848 |
+
msgid "Ratio:"
|
849 |
+
msgstr "Proporção:"
|
850 |
+
|
851 |
+
msgid "Related Videos"
|
852 |
+
msgstr "Vídeos Relacionados"
|
853 |
+
|
854 |
+
msgid "remove external featured image"
|
855 |
+
msgstr "remover imagem destacada externa"
|
856 |
+
|
857 |
+
msgid "remove query strings (whatever follows the question mark sign \"?\")"
|
858 |
+
msgstr ""
|
859 |
+
"remover strings de consulta (tudo o que segue o sinal de interrogação \"?\")"
|
860 |
+
|
861 |
+
msgid "Replace Not Found Image"
|
862 |
+
msgstr "Substituir Imagem Não Encontrada"
|
863 |
+
|
864 |
+
msgid "Requires WooCommerce Additional Variation Images plugin"
|
865 |
+
msgstr "Requer o plugin WooCommerce Additional Variation Images"
|
866 |
+
|
867 |
+
msgid "Reset FIFU settings to the default configuration."
|
868 |
+
msgstr "Redefinir FIFU para a configuração padrão."
|
869 |
+
|
870 |
+
msgid "reset settings"
|
871 |
+
msgstr "redefinir configurações"
|
872 |
+
|
873 |
+
msgid "Reset Settings"
|
874 |
+
msgstr "Redefinir Configurações"
|
875 |
+
|
876 |
+
msgid "REST API"
|
877 |
+
msgstr "API REST"
|
878 |
+
|
879 |
+
msgid "Result:"
|
880 |
+
msgstr "Resultado:"
|
881 |
+
|
882 |
+
msgid "Right click me!"
|
883 |
+
msgstr "Clique com o botão direito do mouse em mim!"
|
884 |
+
|
885 |
+
msgid "Rotate"
|
886 |
+
msgstr "Giro"
|
887 |
+
|
888 |
+
msgid "Rows Limit"
|
889 |
+
msgstr "Limite de Registros"
|
890 |
+
|
891 |
+
msgid "Same Height"
|
892 |
+
msgstr "Mesma Altura"
|
893 |
+
|
894 |
+
msgid "save and use image dimensions"
|
895 |
+
msgstr "salvar e usar dimensões de imagem"
|
896 |
+
|
897 |
+
msgid "Save Image Dimensions"
|
898 |
+
msgstr "Salvar Dimensões de Imagem"
|
899 |
+
|
900 |
+
msgid "save the dimensions of all Featured Images now (it requires php-curl)"
|
901 |
+
msgstr ""
|
902 |
+
"salvar as dimensões de todas as Imagens Destacadas agora (requer php-curl)"
|
903 |
+
|
904 |
+
msgid "Schedule Metadata Generation"
|
905 |
+
msgstr "Agendar Geração de Metadados"
|
906 |
+
|
907 |
+
msgid "selector"
|
908 |
+
msgstr "seletor"
|
909 |
+
|
910 |
+
msgid "Selector"
|
911 |
+
msgstr "Seletor"
|
912 |
+
|
913 |
+
msgid "Sepia"
|
914 |
+
msgstr "Sépia"
|
915 |
+
|
916 |
+
msgid ""
|
917 |
+
"Set one image to each category. The chosen image is the Featured Image from "
|
918 |
+
"the most recent product from that category."
|
919 |
+
msgstr ""
|
920 |
+
"Definir uma imagem para cada categoria. A imagem escolhida será a Imagem "
|
921 |
+
"Destacada do produto mais recente da categoria."
|
922 |
+
|
923 |
+
msgid "Set the title of a Featured Image with the post title."
|
924 |
+
msgstr "Definir o título de uma Imagem Destacada com o título do post."
|
925 |
+
|
926 |
+
msgid "Settings"
|
927 |
+
msgstr "Configurações"
|
928 |
+
|
929 |
+
msgid "Shine"
|
930 |
+
msgstr "Brilho"
|
931 |
+
|
932 |
+
msgid "shop"
|
933 |
+
msgstr "loja"
|
934 |
+
|
935 |
+
msgid ""
|
936 |
+
"shortcodes can be not compatible with other FIFU features, such as CSS Style,"
|
937 |
+
" Same Height, Lazy Load etc."
|
938 |
+
msgstr ""
|
939 |
+
"shortcodes podem não ser compatíveis com outras funcionalidades do FIFU, "
|
940 |
+
"como Estilo de CSS, Mesma Altura, Lazy Load etc."
|
941 |
+
|
942 |
+
msgid "show bottom"
|
943 |
+
msgstr "mostrar parte inferior"
|
944 |
+
|
945 |
+
msgid "show center"
|
946 |
+
msgstr "mostrar centro"
|
947 |
+
|
948 |
+
msgid "show gallery on click"
|
949 |
+
msgstr "mostrar galeria ao clicar"
|
950 |
+
|
951 |
+
msgid "show prev/next buttons"
|
952 |
+
msgstr "mostrar botões anterior/seguinte"
|
953 |
+
|
954 |
+
msgid "Show related videos when the video ends."
|
955 |
+
msgstr "Mostrar vídeos relacionados quando o vídeo terminar."
|
956 |
+
|
957 |
+
msgid "shows full images (in smaller sizes);"
|
958 |
+
msgstr "mostra imagens completas (em tamanhos menores);"
|
959 |
+
|
960 |
+
msgid ""
|
961 |
+
"Show the category image on the category page, immediately before the product "
|
962 |
+
"grid."
|
963 |
+
msgstr ""
|
964 |
+
"Mostrar a imagem da categoria na página da categoria, imediatamente antes da "
|
965 |
+
"grid de produtos."
|
966 |
+
|
967 |
+
msgid "Show the external images in your media library."
|
968 |
+
msgstr "Mostrar as imagens externas na biblioteca de mídia."
|
969 |
+
|
970 |
+
msgid ""
|
971 |
+
"Show the video thumbnail instead of the video. Thumbnails are images, so "
|
972 |
+
"they are loaded much faster than embedded videos."
|
973 |
+
msgstr ""
|
974 |
+
"Mostrar o thumbnail do vídeo ao invés do vídeo. Thumbnails são imagens e, "
|
975 |
+
"portanto, são carregados muito mais rapidamente que os vídeos incorporados."
|
976 |
+
|
977 |
+
msgid "show top"
|
978 |
+
msgstr "mostrar parte superior"
|
979 |
+
|
980 |
+
msgid ""
|
981 |
+
"Since now you have my address (also known as URL), how about making me "
|
982 |
+
"famous?"
|
983 |
+
msgstr ""
|
984 |
+
"Como agora você tem meu endereço (também conhecido como URL), que tal me "
|
985 |
+
"tornar famosa?"
|
986 |
+
|
987 |
+
msgid "Size Ratio"
|
988 |
+
msgstr "Proporção de Tamanho"
|
989 |
+
|
990 |
+
msgid "Sizes"
|
991 |
+
msgstr "Tamanhos"
|
992 |
+
|
993 |
+
msgid "Slider"
|
994 |
+
msgstr "Slider"
|
995 |
+
|
996 |
+
msgid "Slider:"
|
997 |
+
msgstr "Slider:"
|
998 |
+
|
999 |
+
msgid "Slider (URLs delimited by \"|\")"
|
1000 |
+
msgstr "Slider (URLs delimitados por \"|\")"
|
1001 |
+
|
1002 |
+
msgid "Social"
|
1003 |
+
msgstr "Social"
|
1004 |
+
|
1005 |
+
msgid "Social Tags"
|
1006 |
+
msgstr "Tags Sociais"
|
1007 |
+
|
1008 |
+
msgid ""
|
1009 |
+
"some themes and plugins (Jetpack for instance) have their own lazy load "
|
1010 |
+
"implementations, causing conflicts. Your images may not load if you have "
|
1011 |
+
"more than one lazy load component running at the same time."
|
1012 |
+
msgstr ""
|
1013 |
+
"alguns temas e plugins (Jetpack, por exemplo) têm suas próprias "
|
1014 |
+
"implementações de lazy load, causando conflitos. Suas imagens podem não "
|
1015 |
+
"carregar se você tiver mais de um componente de lazy load em execução ao "
|
1016 |
+
"mesmo tempo."
|
1017 |
+
|
1018 |
+
msgid ""
|
1019 |
+
"Some themes and WooCommerce lightbox (PhotoSwipe) may need the image width "
|
1020 |
+
"and height to avoid style issues."
|
1021 |
+
msgstr ""
|
1022 |
+
"Alguns temas e o lightbox do WooCommerce (PhotoSwipe) podem precisar da "
|
1023 |
+
"largura e altura da imagem para que não haja problemas de layout."
|
1024 |
+
|
1025 |
+
msgid ""
|
1026 |
+
"Some themes don't show the Featured Image on posts (only on home). If that's "
|
1027 |
+
"is your case and you would like to show the Featured Image on posts, just "
|
1028 |
+
"enable the toggle. The Featured Image will appear at the beginning of the "
|
1029 |
+
"content, before the text."
|
1030 |
+
msgstr ""
|
1031 |
+
"Alguns temas não mostram a Imagem Destacada nos posts (apenas na página "
|
1032 |
+
"inicial). Se esse for o seu caso e você gostaria de mostrar a Imagem "
|
1033 |
+
"Destacada nos posts, basta ativar esta opção. A Imagem Destacada aparecerá "
|
1034 |
+
"no início do conteúdo, antes do texto."
|
1035 |
+
|
1036 |
+
msgid ""
|
1037 |
+
"Start the videos in background, which means autoplay, no controls and no "
|
1038 |
+
"sound."
|
1039 |
+
msgstr ""
|
1040 |
+
"Iniciar os vídeos em segundo plano, o que significa que a reprodução será "
|
1041 |
+
"automática, sem controles e sem som."
|
1042 |
+
|
1043 |
+
msgid "Start the videos without audio (available for YouTube and Vimeo)."
|
1044 |
+
msgstr "Iniciar os vídeos sem áudio (disponível para YouTube e Vimeo)."
|
1045 |
+
|
1046 |
+
msgid "start automatically"
|
1047 |
+
msgstr "iniciar automaticamente"
|
1048 |
+
|
1049 |
+
msgid "Submit"
|
1050 |
+
msgstr "Enviar"
|
1051 |
+
|
1052 |
+
msgid "support data"
|
1053 |
+
msgstr "dados de suporte"
|
1054 |
+
|
1055 |
+
msgid "Support Data"
|
1056 |
+
msgstr "Dados de Suporte"
|
1057 |
+
|
1058 |
+
msgid "Text"
|
1059 |
+
msgstr "Texto"
|
1060 |
+
|
1061 |
+
msgid ""
|
1062 |
+
"the images need to be in an \"img\" HTML tag and videos in an \"iframe\" tag."
|
1063 |
+
" Contents provided by [shortcode] can't be read."
|
1064 |
+
msgstr ""
|
1065 |
+
"as imagens precisam estar em uma tag HTML \"img\" e os vídeos em uma tag "
|
1066 |
+
"\"iframe\". Conteúdos fornecidos por [shortcodes] não podem ser lidos."
|
1067 |
+
|
1068 |
+
msgid ""
|
1069 |
+
"The plugin adds a new column to your post list. Below you can choose the "
|
1070 |
+
"height (px) of the image in the column. To disable that, just uncheck "
|
1071 |
+
"\"FIFU\" in the Screen Options."
|
1072 |
+
msgstr ""
|
1073 |
+
"O plugin adiciona uma nova coluna à sua lista de posts. Abaixo, você pode "
|
1074 |
+
"escolher a altura (px) da imagem na coluna. Para desabilitar a coluna, basta "
|
1075 |
+
"desmarcar \"FIFU\" nas Opções da Tela."
|
1076 |
+
|
1077 |
+
msgid ""
|
1078 |
+
"This experimental feature allows to input a shortcode instead of an URL. It "
|
1079 |
+
"would allow you to have any content as Featured Media (a music, a text, a "
|
1080 |
+
"map etc). However, some contents will need a large area of your site to be "
|
1081 |
+
"shown properly. So you should define a minimum width that an area of your "
|
1082 |
+
"site should have to be able to show the shortcode content. Otherwise an icon "
|
1083 |
+
"will be shown."
|
1084 |
+
msgstr ""
|
1085 |
+
"Esta funcionalidade experimental permite inserir um shortcode em vez de um "
|
1086 |
+
"URL. Isso permitiria que você utilizasse qualquer conteúdo como Mídia "
|
1087 |
+
"Destacada (uma música, um texto, um mapa etc.). No entanto, alguns conteúdos "
|
1088 |
+
"precisarão de uma grande área do seu site para serem exibidos corretamente. "
|
1089 |
+
"Portanto, você deve definir uma largura mínima que uma área do seu site "
|
1090 |
+
"precisa ter para poder mostrar o conteúdo do shortcode. Caso contrário, um "
|
1091 |
+
"ícone será exibido."
|
1092 |
+
|
1093 |
+
msgid ""
|
1094 |
+
"this plugin doesn't save images in the media library. It means that enabling "
|
1095 |
+
"the two toggles below all post types that have an external Featured Image "
|
1096 |
+
"will no longer have any Featured Image. And you can't undo this action later."
|
1097 |
+
" This also applies to FIFU galleries, videos, sliders and shortcodes."
|
1098 |
+
msgstr ""
|
1099 |
+
"este plugin não salva imagens na biblioteca de mídia. Isso significa que, "
|
1100 |
+
"ativando as duas opções abaixo, todos os posts que possuem uma Imagem "
|
1101 |
+
"Destacada externa não terão mais qualquer Imagem Destacada. E você não "
|
1102 |
+
"poderá desfazer essa ação mais tarde. O mesmo se aplica a galerias, vídeos, "
|
1103 |
+
"sliders e shortcodes do FIFU."
|
1104 |
+
|
1105 |
+
msgid "Thumbnails"
|
1106 |
+
msgstr "Thumbnails"
|
1107 |
+
|
1108 |
+
msgid "time between each transition (in ms)"
|
1109 |
+
msgstr "tempo entre cada transição (em ms)"
|
1110 |
+
|
1111 |
+
msgid "time (in ms)"
|
1112 |
+
msgstr "tempo (em ms)"
|
1113 |
+
|
1114 |
+
msgid "To repeat the process enable the toggle again."
|
1115 |
+
msgstr "Para repetir o processo, ative a opção novamente."
|
1116 |
+
|
1117 |
+
msgid ""
|
1118 |
+
"To schedule this process (hourly, daily etc), you can use the hook "
|
1119 |
+
"fifu_event with your favorite cron event plugin. Suggestion:"
|
1120 |
+
msgstr ""
|
1121 |
+
"Para agendar esse processo (a cada hora, diariamente, etc), você pode usar o "
|
1122 |
+
"gancho fifu_event com seu plugin de agendamento de eventos favorito. "
|
1123 |
+
"Sugestão:"
|
1124 |
+
|
1125 |
+
msgid "transition duration (in ms)"
|
1126 |
+
msgstr "duração da transição (em ms)"
|
1127 |
+
|
1128 |
+
msgid "Troubleshooting"
|
1129 |
+
msgstr "Solução de Problemas"
|
1130 |
+
|
1131 |
+
msgid ""
|
1132 |
+
"Unlike Youtube, Vimeo videos can't fit a theme area without generating a "
|
1133 |
+
"vertical padding. Here you can change the background color from transparent "
|
1134 |
+
"to black."
|
1135 |
+
msgstr ""
|
1136 |
+
"Ao contrário do YouTube, vídeos do Vimeo não podem ser colocados em uma área "
|
1137 |
+
"de tema sem gerar um preenchimento vertical. Aqui você pode alterar a cor do "
|
1138 |
+
"plano de fundo de transparente para preto."
|
1139 |
+
|
1140 |
+
msgid "Unsplash Image Size"
|
1141 |
+
msgstr "Tamanho de Imagem do Unsplash"
|
1142 |
+
|
1143 |
+
msgid "Update all your posts applying the configuration above. "
|
1144 |
+
msgstr "Atualize todos os seus posts aplicando a configuração acima."
|
1145 |
+
|
1146 |
+
msgid "update all your posts now"
|
1147 |
+
msgstr "atualizar todos os seus posts agora"
|
1148 |
+
|
1149 |
+
msgid "URL from Post Content"
|
1150 |
+
msgstr "URL no Conteúdo"
|
1151 |
+
|
1152 |
+
msgid "URL Parameters"
|
1153 |
+
msgstr "Parâmetros de URL"
|
1154 |
+
|
1155 |
+
msgid "Use FIFU with WooCommerce import."
|
1156 |
+
msgstr "Utilize FIFU com a importação do WooCommerce."
|
1157 |
+
|
1158 |
+
msgid ""
|
1159 |
+
"Useful if you have small images, here you can define if the image should be "
|
1160 |
+
"shown in the original size or resized to the dimensions of the available "
|
1161 |
+
"area."
|
1162 |
+
msgstr ""
|
1163 |
+
"Útil se você tiver imagens pequenas, aqui você pode definir se a imagem deve "
|
1164 |
+
"ser mostrada no tamanho original ou redimensionada para as dimensões da área "
|
1165 |
+
"disponível."
|
1166 |
+
|
1167 |
+
msgid ""
|
1168 |
+
"Use social tags to share your posts (and their Featured Images) on the "
|
1169 |
+
"social media."
|
1170 |
+
msgstr ""
|
1171 |
+
"Use tags sociais para compartilhar seus posts (e suas Imagens Destacadas) "
|
1172 |
+
"nas mídias sociais."
|
1173 |
+
|
1174 |
+
msgid "use the 1st (or nth) image (or video) as Featured Image"
|
1175 |
+
msgstr "use a 1ª (ou a enésima) imagem (ou vídeo) como Imagem Destacada"
|
1176 |
+
|
1177 |
+
msgid "Variable Product"
|
1178 |
+
msgstr "Produto Variável"
|
1179 |
+
|
1180 |
+
msgid "variation image gallery requires"
|
1181 |
+
msgstr "a galeria de imagens de variação requer"
|
1182 |
+
|
1183 |
+
msgid "Vertical Rotation"
|
1184 |
+
msgstr "Rotação Vertical"
|
1185 |
+
|
1186 |
+
msgid "Video"
|
1187 |
+
msgstr "Vídeo"
|
1188 |
+
|
1189 |
+
msgid "Video Gallery:"
|
1190 |
+
msgstr "Galeria de Vídeos:"
|
1191 |
+
|
1192 |
+
msgid "Video Gallery (URL)"
|
1193 |
+
msgstr "Galeria de Vídeos (URL)"
|
1194 |
+
|
1195 |
+
msgid "Video Thumbnail"
|
1196 |
+
msgstr "Thumbnail de Vídeo"
|
1197 |
+
|
1198 |
+
msgid "Video + Video Gallery (URLs delimited by \"|\")"
|
1199 |
+
msgstr "Vídeo + Galeria de Vídeos (URLs delimitados por \"|\")"
|
1200 |
+
|
1201 |
+
msgid "width"
|
1202 |
+
msgstr "largura"
|
1203 |
+
|
1204 |
+
msgid ""
|
1205 |
+
"With Lazy Load, images and videos won't be loaded until user scrolls to them."
|
1206 |
+
" It makes your home (or shop) faster."
|
1207 |
+
msgstr ""
|
1208 |
+
"Com Lazy Load, imagens e vídeos não são carregados até que o usuário role a "
|
1209 |
+
"página até eles. Isso torna a página inicial (ou loja) mais rápida."
|
1210 |
+
|
1211 |
+
msgid "WooCommerce"
|
1212 |
+
msgstr "WooCommerce"
|
1213 |
+
|
1214 |
+
msgid "WooCommerce REST API"
|
1215 |
+
msgstr "API REST do WooCommerce"
|
1216 |
+
|
1217 |
+
msgid "WordPress REST API"
|
1218 |
+
msgstr "API REST do WordPress"
|
1219 |
+
|
1220 |
+
msgid "WP All Import"
|
1221 |
+
msgstr "WP All Import"
|
1222 |
+
|
1223 |
+
msgid "WP / WooCommerce REST API"
|
1224 |
+
msgstr "API REST WP / WooCommerce"
|
1225 |
+
|
1226 |
+
msgid "You cannot access private data."
|
1227 |
+
msgstr "Você não pode acessar dados privados."
|
1228 |
+
|
1229 |
+
msgid ""
|
1230 |
+
"You can set Featured Images using custom fields. The main one is "
|
1231 |
+
"fifu_image_url and you can set that using REST API. For nonstandard "
|
1232 |
+
"automation, enable Schedule Metadata Generation, at Admin tab (no additional "
|
1233 |
+
"code required)."
|
1234 |
+
msgstr ""
|
1235 |
+
"Você pode definir Imagens Destacadas usando campos personalizados. O "
|
1236 |
+
"principal é fifu_image_url e você pode defini-lo usando a API REST. Para "
|
1237 |
+
"automação fora do padrão, ative Agendar Geração de Metadados, na aba "
|
1238 |
+
"Administrador (nenhum código adicional é necessário)."
|
1239 |
+
|
1240 |
+
msgid "You just need to create a post and use me as the Featured Image:"
|
1241 |
+
msgstr "Você só precisa criar um post e me usar como Imagem Destacada:"
|
1242 |
+
|
1243 |
+
msgid ""
|
1244 |
+
"You just need to get one URL (Square 75, for example). Use that into the "
|
1245 |
+
"Featured Image (URL) field of your post. FIFU will handle this URL to "
|
1246 |
+
"provide the image in different sizes."
|
1247 |
+
msgstr ""
|
1248 |
+
"Você só precisa obter um URL (quadrado 75, por exemplo). Use o endereço no "
|
1249 |
+
"campo Imagem Destacada (URL) do seu post. FIFU manipulará esse URL para "
|
1250 |
+
"fornecer a imagem em tamanhos diferentes."
|
1251 |
+
|
1252 |
+
msgid ""
|
1253 |
+
"your license key is not activated for this site. For more information please "
|
1254 |
+
"access Settings > License Key."
|
1255 |
+
msgstr ""
|
1256 |
+
"sua chave do produto não está ativada para este site. Para mais informações, "
|
1257 |
+
"acesse Configurações > Chave do Produto."
|
1258 |
+
|
1259 |
+
msgid ""
|
1260 |
+
"You've enabled Same Height feature, that works by cropping the image. Here "
|
1261 |
+
"you can define which part of the image should be shown."
|
1262 |
+
msgstr ""
|
1263 |
+
"Você ativou o recurso Mesma Altura, que funciona cortando a imagem. Aqui "
|
1264 |
+
"você pode definir qual parte da imagem deve ser mostrada."
|
1265 |
+
|
1266 |
+
msgid "You were probably using a deprecated feature. Just do it:"
|
1267 |
+
msgstr ""
|
1268 |
+
"Você provavelmente estava utilizando alguma funcionalidade ultrapassada. "
|
1269 |
+
"Faça isto:"
|
1270 |
+
|
1271 |
+
msgid "z-index"
|
1272 |
+
msgstr "z-index"
|
1273 |
+
|
1274 |
+
msgid "zoom"
|
1275 |
+
msgstr "zoom"
|
1276 |
+
|
1277 |
+
msgid "Zoom In"
|
1278 |
+
msgstr "Mais Zoom"
|
1279 |
+
|
1280 |
+
msgid "Zoom Out"
|
1281 |
+
msgstr "Menos Zoom"
|
1282 |
+
|
1283 |
+
msgid "If you need help, you can refer to"
|
1284 |
+
msgstr "Se precisar de ajuda, consulte"
|
1285 |
+
|
1286 |
+
msgid "or send an email to"
|
1287 |
+
msgstr "ou envie um e-mail para"
|
1288 |
+
|
1289 |
+
msgid "with this"
|
1290 |
+
msgstr "com isto"
|
1291 |
+
|
1292 |
+
msgid "troubleshooting"
|
1293 |
+
msgstr "solução de problemas"
|
1294 |
+
|
1295 |
+
msgid "3) paste it here: "
|
1296 |
+
msgstr "3) cole-o aqui:"
|
1297 |
+
|
1298 |
+
msgid "2) find the box"
|
1299 |
+
msgstr "2) encontre a caixa"
|
1300 |
+
|
1301 |
+
msgid ""
|
1302 |
+
"Requirement: access Plugins -> Plugin Editor -> Select plugin to edit -> "
|
1303 |
+
"Featured Image from URL -> Select. Then change the value of "
|
1304 |
+
"FIFU_DELETE_ALL_URLS from false to true."
|
1305 |
+
msgstr ""
|
1306 |
+
"Requisito: acesse Plugins -> Editor de plugin -> Selecione o plugin para "
|
1307 |
+
"editar -> Featured Image from URL -> Selecionar. Altere o valor de "
|
1308 |
+
"FIFU_DELETE_ALL_URLS de \"false\" para \"true\"."
|
1309 |
+
|
1310 |
+
msgid "Unofficial solutions are not supported"
|
1311 |
+
msgstr "Soluções não oficiais não são suportadas"
|
1312 |
+
|
1313 |
+
msgid ""
|
1314 |
+
"if you intend to use FIFU in multiple distinct sites you can buy more "
|
1315 |
+
"license keys"
|
1316 |
+
msgstr ""
|
1317 |
+
"se você pretende usar FIFU em vários sites distintos, poderá comprar mais "
|
1318 |
+
"chaves "
|
1319 |
+
|
1320 |
+
msgid ""
|
1321 |
+
"Examples: image URL: https://domain.com/image.jpg; keywords: sea,sun. To get "
|
1322 |
+
"a random image leave this field empty."
|
1323 |
+
msgstr ""
|
1324 |
+
"Exemplos: URL da imagem: https://domain.com/image.jpg; palavras-chave: mar,"
|
1325 |
+
"sol. Para obter uma imagem aleatória, deixe este campo vazio."
|
1326 |
+
|
1327 |
+
msgid "Video URL"
|
1328 |
+
msgstr "URL do Vídeo"
|
1329 |
+
|
1330 |
+
msgid "remove external featured video"
|
1331 |
+
msgstr "remover vídeo destacado externo"
|
1332 |
+
|
1333 |
+
msgid "Default values is |"
|
1334 |
+
msgstr "Valor padrão é |"
|
1335 |
+
|
1336 |
+
msgid "Delimited by |"
|
1337 |
+
msgstr "Delimitado por |"
|
1338 |
+
|
1339 |
+
msgid "List Delimiter"
|
1340 |
+
msgstr "Delimitador de Lista"
|
1341 |
+
|
1342 |
+
msgid "Gallery Image (URL)"
|
1343 |
+
msgstr "Imagem da Galeria (URL)"
|
1344 |
+
|
1345 |
+
msgid "Add image from Sirv"
|
1346 |
+
msgstr "Adicionar imagem do Sirv"
|
1347 |
+
|
1348 |
+
msgid "Feature of the month"
|
1349 |
+
msgstr "Funcionalidade do mês"
|
1350 |
+
|
1351 |
+
msgid "CSS selector"
|
1352 |
+
msgstr "Seletor CSS"
|
1353 |
+
|
1354 |
+
msgid ""
|
1355 |
+
"embedded video can be replaced by its thumbnail + play button (drastically "
|
1356 |
+
"decreases the loading time)"
|
1357 |
+
msgstr ""
|
1358 |
+
"vídeo incorporado pode ser substituído por seu thumbnail + botão play "
|
1359 |
+
"(diminui drasticamente o tempo de carregamento)"
|
1360 |
+
|
1361 |
+
msgid "Google Chrome Extension for FIFU"
|
1362 |
+
msgstr "Extensão do Google Chrome para FIFU"
|
1363 |
+
|
1364 |
+
msgid "support to private videos from Vimeo"
|
1365 |
+
msgstr "suporte a vídeos privados do Vimeo"
|
1366 |
+
|
1367 |
+
msgid "integration with WooCoomerce Additional Variation Images plugin"
|
1368 |
+
msgstr "integração com o plugin WooCommerce Additional Variation Images"
|
languages/featured-image-from-url.pot
ADDED
@@ -0,0 +1,1060 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2020 Featured Image from URL
|
2 |
+
# This file is distributed under the same license as the Featured Image from URL plugin.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Featured Image from URL 3.1.4\n"
|
6 |
+
"Report-Msgid-Bugs-To: marcel@featuredimagefromurl.com\n"
|
7 |
+
"Last-Translator: marcel@featuredimagefromurl.com\n"
|
8 |
+
"Language-Team: marcel@featuredimagefromurl.com\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2020-06-26T18:49:47-03:00\n"
|
13 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
+
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
+
"X-Domain: featured-image-from-url\n"
|
16 |
+
|
17 |
+
#. Description of the plugin
|
18 |
+
msgid "Use an external image as Featured Image of a post or WooCommerce product. Includes Image Search, Video, Social Tags, SEO, Lazy Load, Gallery, Automation etc."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
msgid "1) access Metadata tab;"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
msgid "1) add a new post;"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
msgid "1) right click me now;"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
msgid "2) enable Clean Metadata (it will be automatically disabled when finished);"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
msgid "2) select "Copy image address";"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
msgid "315 Degrees"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
msgid "360 Degrees"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
msgid "3) enable Image Metadata."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
msgid "3) paste my address into "Image URL" field."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
msgid "Add Class"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
msgid "Add FIFU fields (Featured Image and Image Gallery) to product variations."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
msgid "Add icons to the video thumbnails in the WooCommerce gallery."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
msgid "Add Media RSS tags in the RSS feed. This way, services that make use of RSS, such as Google News, can show the Featured Images."
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
msgid "Add-On"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
msgid "Add play button to video thumbnail. Clicking on that, the video starts inline or in a lightbox."
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
msgid "add social tags"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
msgid "Add some FIFU parameters to your image URLs. It only makes sense when you have a theme (or plugin) that calls the image URLs in a nonstandard way, what could break some FIFU features, such as Video, Slider, Shortcode, Add Class, Lazy Load and Same Height > Object Fit."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
msgid "Add the class "fifu-class" to the Featured Image tags."
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
msgid "Admin"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
msgid "A famous plugin doesn\'t work with FIFU"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
msgid "All my images disappeared"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
msgid "All Posts"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
msgid "Alt"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
msgid "Title + Titles Gallery (delimited by "|")"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
msgid "alt/title attribute (optional)"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
msgid "always use the post title as image title (it will ignore FIFU alt/title field)"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
msgid "And don\'t worry about storage. I will remain EXTERNAL. I WON\'T be uploaded to your media library."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
msgid "and you want a 4:3 size ratio"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
msgid "archive"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
msgid "attribute"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
msgid "Autoplay"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
msgid "Autoplay videos (available for YouTube and Vimeo)."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
msgid "Auto Set Category Images"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
msgid "Auto Set Image Title"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
msgid "Background Video"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
msgid "batch"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
msgid "Batch"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
msgid "Black Background"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
msgid "Blur"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
msgid "Blur Gray Scale"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
msgid "Brighten"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
msgid "cart"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
msgid "category"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
msgid "Category Image on Grid"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
msgid "Check for updates"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
msgid "Choose a hover effect to be applied to the Featured Images on home."
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
msgid "Choose Sirv image"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
msgid "Choose the number of fields you have in the post editor."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
msgid "Choose the size of the Unsplash images (loaded randomly or via keywords search). Examples of valid sizes: 500x500, 300x400, 1920x1080... Or leave this field empty to get the original size."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
msgid "Chrome Extension Available"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
msgid "Circle"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
msgid "Clean Metadata"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
msgid "clean the dimensions of all Featured Images now"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
msgid "Clean the Image Metadata generated by FIFU, but not the URLs. This option might be necessary if you intend to deactivate the plugin and use only internal Featured Images again."
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
msgid "color"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
msgid "Configuration"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
msgid "confirm that you are ready to lose your Featured Images"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
msgid "copy the post title to FIFU alt/title field (it has effect when you click on Publish button in the post editor)"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
msgid "Creating your first product"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
msgid "crops the images (the options center, top and bottom will be available in the post editor);"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
msgid "CSS selectors (optional)"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
msgid "CSS Style"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
msgid "CSV example"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
msgid "Custom Fields"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
msgid "Custom Post Type"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
msgid "Database"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
msgid "Default Featured Image"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
msgid "Define a CSS style to be applied to the Featured Images. Example:"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
msgid "Define a minimum width that a theme area should have to show a video. FIFU automatically shows a thumbnail when the minimum width is not reached."
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
msgid "Define the slider settings here."
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
msgid "Define the URL of a default image to be shown when you create (or update) a post with no Featured Image."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
msgid "Define the URL of an image to be shown in case of image not found error."
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
msgid "deforms the images."
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
msgid "Delay"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
msgid "Delete All URLs"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
msgid "delete all your URLs now"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
msgid "Disable lightbox and zoom from image gallery."
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
msgid "Documentation"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
msgid "Don\'t you believe me? So why don\'t you check my Internet address (also known as URL)?"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
msgid "e.g.: 16:9"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
msgid "e.g.: 300"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
msgid "e.g.: 600"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
msgid "e.g.: 64"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
msgid "Email"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
msgid "Email address where you received the license key"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
msgid "Endpoints"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
msgid "Examples of selectors..."
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
msgid "Examples of valid size ratios: 3:2, 16:9, 1:1..."
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
msgid "fade effect"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
msgid "FAQ"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
msgid "Fast Support"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
msgid "Featured Image"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
msgid "Featured Image Title"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
msgid "Featured Image Title + Gallery Titles (delimited by "|")"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
msgid "Featured Image Title + Gallery Titles"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
msgid "Featured Image Column"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
msgid "Featured Image in Content"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
msgid "Featured Image (URL)"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
msgid "Featured Image URL"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
msgid "Featured Image URL + Gallery URLs (delimited by "|")"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
msgid "Featured Image URL + Gallery URLs"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
msgid "Featured Shortcode"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
msgid "Featured Slider"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
msgid "Featured Slider (URL)"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
msgid "Featured Slider (URLs)"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
msgid "Featured Slider URLs (delimited by "|")"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
msgid "Featured Video"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
msgid "Featured Video (URL)"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
msgid "Featured Video URL"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
msgid "Featured Video URL + Gallery URLs (delimited by "|")"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
msgid "Featured Video URL + Gallery URLs"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
msgid "FIFU automatically adds its add-on to WP All Import."
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
msgid "FIFU supports videos from YouTube, Vimeo, Imgur, 9GAG, Cloudinary, Tumblr and Publitio (videos hosted elsewhere are not supported)."
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
msgid "Flashing"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
msgid "follow redirects (it will make the process slower)"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
msgid "for Vimeo videos"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
msgid "for YouTube videos"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
msgid "Gallery Fields"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
msgid "Gallery Icon"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
msgid "Getting Flickr URL"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
msgid "Getting Started"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
msgid "Giphy search"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
msgid "Giphy Search"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
msgid "Gray Scale"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
msgid "Help"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
msgid "here"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
msgid "Hide Featured Media"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
msgid "hide from grid"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
msgid "hide the 1st (or nth) image (or video) from content"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
msgid "Hide the Featured Media (Image, Video or Slider) on posts but keeping its visibility on home."
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
msgid "Hi, I\'m an EXTERNAL image!"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
msgid "home"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
msgid "Horizontal Rotation"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
msgid "Hover Effects"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
msgid "If for some reason jQuery is missing from your site, which is not commom, you can import that from a CDN."
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
msgid "If you are setting the image URLs in a nonstandard way, the images probably won\'t be shown at front-end because some extra metadata is required. Here you can schedule an event to run each N minutes and check if there is some image URL without metadata and create that. The FIFU keys are listed on WP All Import > Custom Fields."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
msgid "if you have activated your license key for a development site before and now you want to activate that for this main site, contact the support too"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
msgid "If you have different sizes of images on your home (or shop), enable the toggle below to show them in the same height. Depending on your theme, it may be necessary to use a Selector to inform where is the group of images that you want to resize. "
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
msgid "if your domain has changed, please contact the support"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
msgid "ignore posts that already have a Featured Image (or video)"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
msgid "ignore URL from Post Content"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
msgid "I\'m a developer"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
msgid "Image"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
msgid "Image Title"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
msgid "Image Gallery:"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
msgid "Image Gallery (URL)"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
msgid "Image + Image Gallery (URLs delimited by "|")"
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
msgid "Image Metadata"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
msgid "image (or video) position"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
msgid "Image URL or Keywords"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
msgid "Image Validation"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
msgid "Import"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
msgid "Important:"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
msgid "Importing products..."
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
msgid "Importing Variable Products to WooCommerce"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
msgid "import jQuery from a CDN"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
msgid "inline"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
msgid "In order to FIFU identify your gallery, it\'s necessary to inform its CSS selector here. The default value is %1$s, but you may need a different selector if your theme overwrites the original WooCommerce layout."
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
msgid "Interval (minutes)"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
msgid "It can take some minutes and can\'t be undone, so make a backup."
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
msgid "It checks images addresses and, when an image is not found, its URL is not saved. However, each validation can take some seconds. It is not integrated with URL from Post Content or REST API features."
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
msgid "It means I\'m NOT in your media library and I\'m NOT an attached plugin file too."
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
msgid "It reads the HTML of your post and use the 1st image (or video) URL found as Featured Image. It happens when you click on Publish (or Update) button."
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
msgid "it will be automatically disabled when finished"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
msgid "jQuery"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
msgid "Just send me an email. If you are available to discuss the details and the plugin is free and has more than 50,000 active installs, I should provide an integration very soon."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
msgid "Key"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
msgid "Lazy Load"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
msgid "License Key"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
msgid "lightbox"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
msgid "Lightbox and Zoom"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
msgid "Limit of rows to UPDATE, INSERT or DELETE by query. Higher this number, faster the features URL from Post Content > All Posts, Image Metadata and Clean Metadata. However, if you have too limited resources, don\'t increase this value too much, otherwise your database can bring down."
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
msgid "Loop"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
msgid "Loop videos (available for YouTube and Vimeo)."
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
msgid "Media Library"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
msgid "Media RSS Tags"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
msgid "Metadata"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
msgid "Minimum Width"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
msgid "minimum width (px)"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
msgid "mode"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
msgid "Most themes and plugins are not able to show the external Featured Image if there is no internal Featured Image associated to your post. Enabling the toggle below, symbolic empty files will be added to your Media Library to overcome this limitation."
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
msgid "Mouseover Autoplay"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
msgid "Mute"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
msgid "new version available."
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
msgid "Object Fit"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
msgid "OK"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
msgid "on custom post type"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
msgid "on home (or shop)"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
msgid "only image tags"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
msgid "on page"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
msgid "on post"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
msgid "Opacity Color"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
msgid "Opacity White"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
msgid "original size"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
msgid "Original Size"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
msgid "or just drag and drop me here"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
msgid "overwrite the existing Featured Image (or video)"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
msgid "page"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
msgid "pause autoplay on hover"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
msgid "Performance"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
msgid "Play a video on "mouseover" and pause on "mouseout"."
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
msgid "Play Button"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
msgid "Please insert your email and license key below to use this plugin without limitations."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
msgid "Please wait some seconds..."
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
msgid "plugin is up to date."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
msgid "post"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
msgid "Post"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
msgid "Powered by Featured Image from URL plugin"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
msgid "prioritize video than image (if both exist)"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
msgid "product"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
msgid "Product"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
msgid "product category"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
msgid "Product Category"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
msgid "Product Image Title + Gallery Titles (delimited by "|")"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
msgid "Product Image + Gallery (URLs delimited by "|")"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
msgid "Product Image (URL)"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
msgid "variable product"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
msgid "product variation"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
msgid "Product Variation"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
msgid "Product Video + Gallery (URLs delimited by "|")"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
msgid "Rainbow"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
msgid "Ratio:"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
msgid "Related Videos"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
msgid "remove external featured image"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
msgid "remove query strings (whatever follows the question mark sign "?")"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
msgid "Replace Not Found Image"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
msgid "Requires WooCommerce Additional Variation Images plugin"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
msgid "Reset FIFU settings to the default configuration."
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
msgid "reset settings"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
msgid "Reset Settings"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
msgid "REST API"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
msgid "Result:"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
msgid "Right click me!"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
msgid "Rotate"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
msgid "Rows Limit"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
msgid "Same Height"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
+
msgid "save and use image dimensions"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
msgid "Save Image Dimensions"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
msgid "save the dimensions of all Featured Images now (it requires php-curl)"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
msgid "Schedule Metadata Generation"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
msgid "selector"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
msgid "Selector"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
msgid "Sepia"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
msgid "Set one image to each category. The chosen image is the Featured Image from the most recent product from that category."
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
msgid "Set the title of a Featured Image with the post title."
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
msgid "Settings"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
msgid "Shine"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
msgid "shop"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
msgid "shortcodes can be not compatible with other FIFU features, such as CSS Style, Same Height, Lazy Load etc."
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
msgid "show bottom"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
msgid "show center"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
msgid "show gallery on click"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
msgid "show prev/next buttons"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
msgid "Show related videos when the video ends."
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
msgid "shows full images (in smaller sizes);"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
msgid "Show the category image on the category page, immediately before the product grid."
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
msgid "Show the external images in your media library."
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
msgid "Show the video thumbnail instead of the video. Thumbnails are images, so they are loaded much faster than embedded videos."
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
msgid "show top"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
msgid "Since now you have my address (also known as URL), how about making me famous?"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
msgid "Size Ratio"
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
msgid "Sizes"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
msgid "Slider"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
msgid "Slider:"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
msgid "Slider (URLs delimited by "|")"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
msgid "Social"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
msgid "Social Tags"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
msgid "some themes and plugins (Jetpack for instance) have their own lazy load implementations, causing conflicts. Your images may not load if you have more than one lazy load component running at the same time."
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
msgid "Some themes and WooCommerce lightbox (PhotoSwipe) may need the image width and height to avoid style issues."
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
msgid "Some themes don\'t show the Featured Image on posts (only on home). If that\'s is your case and you would like to show the Featured Image on posts, just enable the toggle. The Featured Image will appear at the beginning of the content, before the text."
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
msgid "Start the videos in background, which means autoplay, no controls and no sound."
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
msgid "Start the videos without audio (available for YouTube and Vimeo)."
|
835 |
+
msgstr ""
|
836 |
+
|
837 |
+
msgid "start automatically"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
msgid "Submit"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
msgid "support data"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
msgid "Support Data"
|
847 |
+
msgstr ""
|
848 |
+
|
849 |
+
msgid "Text"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
msgid "the images need to be in an "img" HTML tag and videos in an "iframe" tag. Contents provided by [shortcode] can\'t be read."
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
msgid "The plugin adds a new column to your post list. Below you can choose the height (px) of the image in the column. To disable that, just uncheck "FIFU" in the Screen Options."
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
msgid "This experimental feature allows to input a shortcode instead of an URL. It would allow you to have any content as Featured Media (a music, a text, a map etc). However, some contents will need a large area of your site to be shown properly. So you should define a minimum width that an area of your site should have to be able to show the shortcode content. Otherwise an icon will be shown."
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
msgid "this plugin doesn\'t save images in the media library. It means that enabling the two toggles below all post types that have an external Featured Image will no longer have any Featured Image. And you can\'t undo this action later. This also applies to FIFU galleries, videos, sliders and shortcodes."
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
msgid "Thumbnails"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
msgid "time between each transition (in ms)"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
msgid "time (in ms)"
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
msgid "To repeat the process enable the toggle again."
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
msgid "To schedule this process (hourly, daily etc), you can use the hook fifu_event with your favorite cron event plugin. Suggestion:"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
msgid "transition duration (in ms)"
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
msgid "Troubleshooting"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
msgid "Unlike Youtube, Vimeo videos can\'t fit a theme area without generating a vertical padding. Here you can change the background color from transparent to black."
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
msgid "Unsplash Image Size"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
msgid "Update all your posts applying the configuration above. "
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
msgid "update all your posts now"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
msgid "URL from Post Content"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
msgid "URL Parameters"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
msgid "Use FIFU with WooCommerce import."
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
msgid "Useful if you have small images, here you can define if the image should be shown in the original size or resized to the dimensions of the available area."
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
msgid "Use social tags to share your posts (and their Featured Images) on the social media."
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
msgid "use the 1st (or nth) image (or video) as Featured Image"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
msgid "Variable Product"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
msgid "variation image gallery requires"
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
msgid "Vertical Rotation"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
msgid "Video"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
msgid "Video Gallery:"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
msgid "Video Gallery (URL)"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
msgid "Video Thumbnail"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
msgid "Video + Video Gallery (URLs delimited by "|")"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
msgid "width"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
msgid "With Lazy Load, images and videos won\'t be loaded until user scrolls to them. It makes your home (or shop) faster."
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
msgid "WooCommerce"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
msgid "WooCommerce REST API"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
msgid "WordPress REST API"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
msgid "WP All Import"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
msgid "WP / WooCommerce REST API"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
msgid "You cannot access private data."
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
msgid "You can set Featured Images using custom fields. The main one is fifu_image_url and you can set that using REST API. For nonstandard automation, enable Schedule Metadata Generation, at Admin tab (no additional code required)."
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
msgid "You just need to create a post and use me as the Featured Image:"
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
msgid "You just need to get one URL (Square 75, for example). Use that into the Featured Image (URL) field of your post. FIFU will handle this URL to provide the image in different sizes."
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
msgid "your license key is not activated for this site. For more information please access Settings > License Key."
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
msgid "You\'ve enabled Same Height feature, that works by cropping the image. Here you can define which part of the image should be shown."
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
msgid "You were probably using a deprecated feature. Just do it:"
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
msgid "z-index"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
msgid "zoom"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
msgid "Zoom In"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
msgid "Zoom Out"
|
991 |
+
msgstr ""
|
992 |
+
|
993 |
+
msgid "If you need help, you can refer to"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
msgid "or send an email to"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
msgid "with this"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
msgid "troubleshooting"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
msgid "3) paste it here: "
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
msgid "2) find the box"
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
msgid "Requirement: access Plugins -> Plugin Editor -> Select plugin to edit -> Featured Image from URL -> Select. Then change the value of FIFU_DELETE_ALL_URLS from false to true."
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
msgid "Unofficial solutions are not supported"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
msgid "if you intend to use FIFU in multiple distinct sites you can buy more license keys"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
msgid "Examples: image URL: https://domain.com/image.jpg; keywords: sea,sun. To get a random image leave this field empty."
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
msgid "Video URL"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
msgid "remove external featured video"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
msgid "Default values is |"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
msgid "Delimited by |"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
msgid "List Delimiter"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
msgid "Gallery Image (URL)"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
msgid "Add image from Sirv"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
msgid "Feature of the month"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
msgid "CSS selector"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
msgid "embedded video can be replaced by its thumbnail + play button (drastically decreases the loading time)"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
msgid "Google Chrome Extension for FIFU"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
msgid "support to private videos from Vimeo"
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
msgid "integration with WooCoomerce Additional Variation Images plugin"
|
1060 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Plugin Name ===
|
2 |
Contributors: marceljm
|
3 |
Donate link: https://donorbox.org/fifu
|
4 |
-
Tags: featured image,
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.4.2
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,68 +12,87 @@ Use an external image as Featured Image of a post or WooCommerce product. Includ
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
* Featured Image from URL plugin allows you to use an external image as Featured Image of your post, page and Custom Post Type, such as WooCommerce Product;
|
18 |
-
|
19 |
-
* integrated with Unsplash engine, allows to search images by keywords (or you can use random images);
|
20 |
-
|
21 |
-
* perfect for external posts, the plugin is able to use the first (or nth) image/video as Featured Image;
|
22 |
-
|
23 |
-
* when you access the table of posts/pages/products/categories in admin menu, the Featured Images are shown in a new column;
|
24 |
-
|
25 |
-
* if your theme doesn't show Featured Image on posts/pages/products, it's possible to include that at the beginning of the content automatically;
|
26 |
-
|
27 |
-
* but if your theme show the Featured Images on posts/pages/products, there is an option to remove the Featured Image;
|
28 |
-
|
29 |
-
* with lazy load feature the images/videos won't be loaded until user scrolls to them making the home/shop page load faster;
|
30 |
-
|
31 |
-
* all included content still has social tags to facilitate sharing on social networks;
|
32 |
-
|
33 |
-
* compatible with WP All Import plugin and WooCommerce import;
|
34 |
-
|
35 |
-
* some nonstandard image URLs, such as Instagram and Google Drive's, will work as well;
|
36 |
-
|
37 |
-
* you can define a default external featured image to be shown when there is no featured image;
|
38 |
-
|
39 |
-
* you can disable the product lightbox and zoom;
|
40 |
-
|
41 |
-
* you can apply your own CSS style or 18 hover effects to the images;
|
42 |
-
|
43 |
-
* you can search GIFs from Giphy by keywords and use it as featured image (**premium feature**);
|
44 |
-
|
45 |
-
* supports WP REST API (**premium feature**);
|
46 |
-
|
47 |
-
* allows to schedule an cron event to set all first images as featured images. So it can run hourly, daily etc. (**premium feature**);
|
48 |
-
|
49 |
-
* all features created for external images are available for external videos from YouTube, Vimeo, Facebook, Instagram, Imgur, 9GAG, Cloudinary, Tumblr and Publitio. For YouTube videos, it's possible to set player parameters. And you can define the video size for each screen type (**premium feature**);
|
50 |
-
|
51 |
-
* you can use a slider of images as "featured image" (**premium feature**);
|
52 |
-
|
53 |
-
* you can use an external video thumbnail or an external video (from YouTube, Vimeo, Facebook, Instagram, Imgur, 9GAG, Cloudinary, Tumblr and Publitio) as "featured image" (**premium feature**);
|
54 |
-
|
55 |
-
* embedded video can be replaced by its image thumbnail + play button (with some customizations). It drastically decreases the loading time. (**premium feature**);
|
56 |
-
|
57 |
-
* you can use any content provided by a shortcode as "featured image" (**premium feature**);
|
58 |
-
|
59 |
-
* auto set product category images, with each image being chosen among the external product images from that category (**premium feature**);
|
60 |
-
|
61 |
-
* it's also possible to use external images in the WooCommerce Product Gallery, Product Category and Variable Product (**premium feature**);
|
62 |
-
|
63 |
-
* you can use external thumbnails from Flickr to make your site faster (**premium feature**);
|
64 |
-
|
65 |
-
* it's able to crop the external featured images to the same size (**premium feature**);
|
66 |
-
|
67 |
-
* auto play/pause videos on mouse over/out (**premium feature**);
|
68 |
-
|
69 |
-
* replaces broken URLs by a default one (**premium feature**);
|
70 |
-
|
71 |
-
* defines Unsplash image sizes (**premium feature**);
|
72 |
-
|
73 |
-
* adds media RSS tags (**premium feature**).
|
74 |
-
|
75 |
-
**<a href="https://fifu.app/">Official Site</a>**
|
76 |
-
**<a href="https://chrome.google.com/webstore/detail/fifu-scraper/pccimcccbkdeeadhejdmnffmllpicola">Google Chrome Extension</a>**
|
77 |
|
78 |
== Installation ==
|
79 |
|
@@ -84,90 +103,82 @@ Features:
|
|
84 |
|
85 |
== Frequently Asked Questions ==
|
86 |
|
87 |
-
= Where
|
88 |
-
|
89 |
-
* It will be immediately below or above the traditional "Featured Image" box, in the page/post/product editor.
|
90 |
-
|
91 |
-
= What's the URL field? =
|
92 |
-
|
93 |
-
* There you should paste the image URL. For example: https://farm4.staticflickr.com/3761/9944251684_e16fd019c0_b.jpg
|
94 |
|
95 |
-
|
96 |
|
97 |
-
|
98 |
|
99 |
-
|
100 |
|
101 |
-
|
102 |
|
103 |
-
|
104 |
|
105 |
-
|
106 |
|
107 |
-
|
108 |
|
109 |
-
|
110 |
|
111 |
-
|
112 |
|
113 |
-
|
114 |
|
115 |
-
|
116 |
|
117 |
-
|
118 |
|
119 |
-
|
120 |
|
121 |
-
* Just click on "Screen Options", and check or uncheck "FIFU".
|
122 |
-
|
123 |
-
= How to show the Featured Image (internal or external) at the beginning of the content of a Post, Page or Product? =
|
124 |
-
|
125 |
-
* There is a toggle (on/off) in Featured Image from URL settings. This functionality was added to attend some themes that didn't show the Featured Image before the content of Posts, Pages or Products.
|
126 |
|
127 |
== Screenshots ==
|
128 |
|
129 |
-
1. Just
|
130 |
|
131 |
-
2. If the URL is correct, the image will be shown
|
132 |
|
133 |
-
3.
|
134 |
|
135 |
-
4.
|
136 |
|
137 |
-
5. Featured
|
138 |
|
139 |
-
6. External
|
140 |
|
141 |
-
7. External
|
142 |
|
143 |
-
8.
|
144 |
|
145 |
-
9.
|
146 |
|
147 |
-
10.
|
148 |
|
149 |
-
11.
|
150 |
|
151 |
-
12.
|
152 |
|
153 |
-
13. External
|
154 |
|
155 |
-
14. External
|
156 |
|
157 |
-
15.
|
158 |
|
159 |
-
16. External
|
160 |
|
161 |
-
17.
|
162 |
|
163 |
-
18.
|
164 |
|
165 |
-
19.
|
166 |
|
167 |
-
20.
|
168 |
|
169 |
== Changelog ==
|
170 |
|
|
|
|
|
|
|
171 |
= 3.1.3 =
|
172 |
* Improvement (Premium): Same Height (each selector can have a different size ratio); Improvement: Image Metadata (query optimization); Deprecated: Maximum Sizes; Bug fix: conflict between Lazy Load and Storefront; Bug fix: conflict between Lazy Load and background-images.
|
173 |
|
@@ -777,6 +788,9 @@ was removed. To finish, a Premium version is now been presented.
|
|
777 |
|
778 |
== Upgrade Notice ==
|
779 |
|
|
|
|
|
|
|
780 |
= 3.1.3 =
|
781 |
* Improvement (Premium): Same Height (each selector can have a different size ratio); Improvement: Image Metadata (query optimization); Deprecated: Maximum Sizes; Bug fix: conflict between Lazy Load and Storefront; Bug fix: conflict between Lazy Load and background-images.
|
782 |
|
1 |
=== Plugin Name ===
|
2 |
Contributors: marceljm
|
3 |
Donate link: https://donorbox.org/fifu
|
4 |
+
Tags: featured image, featured, image, url, external, woocommerce, product, gallery, video, slider, shortcode, thumbnail, default, lazy load, rest, api, link, uri, address, first, auto, automatic, rss, media, tag, seo, social, keyword, search, random, youtube, vimeo, import
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.4.2
|
7 |
+
Stable tag: 3.1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
### WordPress plugin for external Featured Image
|
16 |
+
|
17 |
+
Since 2015 FIFU has helped thousands of websites worldwide to save money on storage, processing and copyright.
|
18 |
+
|
19 |
+
#### FEATURED IMAGE
|
20 |
+
Use an external image as Featured Image of your post, page or custom post type.
|
21 |
+
|
22 |
+
* External Featured Image
|
23 |
+
* Unsplash Image Search
|
24 |
+
* Lazy Load
|
25 |
+
* Default Featured Image
|
26 |
+
* Hide Featured Media
|
27 |
+
* Featured Image in Content
|
28 |
+
* CSS Style
|
29 |
+
* Original Size
|
30 |
+
* Add Class
|
31 |
+
* Save Image Dimensions
|
32 |
+
* Featured Image Column
|
33 |
+
* **[Premium]** Giphy Image Search
|
34 |
+
* **[Premium]** Unsplash Image Size
|
35 |
+
* **[Premium]** Same Height
|
36 |
+
* **[Premium]** Hover Effects
|
37 |
+
* **[Premium]** Replace Not Found Image
|
38 |
+
* **[Premium]** Image Validation
|
39 |
+
* **[Premium]** Flickr Thumbnails
|
40 |
+
|
41 |
+
#### SEO
|
42 |
+
|
43 |
+
* Auto Set Image Title
|
44 |
+
* Social Tags
|
45 |
+
* **[Premium]** Media RSS Tags
|
46 |
+
|
47 |
+
#### AUTOMATION
|
48 |
+
|
49 |
+
* WP All Import Add-On
|
50 |
+
* WooCommerce Import
|
51 |
+
* URL from Post Content
|
52 |
+
* **[Premium]** WP REST API
|
53 |
+
* **[Premium]** WooCommerce REST API
|
54 |
+
* **[Premium]** Schedule Metadata Generation
|
55 |
+
|
56 |
+
#### WOOCOMMERCE
|
57 |
+
|
58 |
+
* External Product Image
|
59 |
+
* Lightbox and Zoom
|
60 |
+
* Category Image on Grid
|
61 |
+
* **[Premium]** External Image Gallery
|
62 |
+
* **[Premium]** External Video Gallery
|
63 |
+
* **[Premium]** Auto Set Category Images
|
64 |
+
* **[Premium]** Variable Product
|
65 |
+
* **[Premium]** Variation Image
|
66 |
+
* **[Premium]** Variation Image Gallery
|
67 |
+
|
68 |
+
#### FEATURED VIDEO
|
69 |
+
Supports videos from YouTube, Vimeo, Imgur, 9GAG, Cloudinary, Tumblr and Publitio.
|
70 |
+
|
71 |
+
* **[Premium]** Featured Video
|
72 |
+
* **[Premium]** Video Thumbnail
|
73 |
+
* **[Premium]** Play Button
|
74 |
+
* **[Premium]** Minimum Width
|
75 |
+
* **[Premium]** Black Background
|
76 |
+
* **[Premium]** Mouseover Autoplay
|
77 |
+
* **[Premium]** Autoplay
|
78 |
+
* **[Premium]** Loop
|
79 |
+
* **[Premium]** Mute
|
80 |
+
* **[Premium]** Background Video
|
81 |
+
* **[Premium]** Related Videos
|
82 |
+
* **[Premium]** Gallery Icon
|
83 |
+
|
84 |
+
#### OTHERS
|
85 |
+
|
86 |
+
* **[Premium]** Featured Slider
|
87 |
+
* **[Premium]** Featured Shortcode
|
88 |
+
|
89 |
+
#### LINKS
|
90 |
+
|
91 |
+
* **<a href="https://fifu.app/">Featured Image from URL Premium</a>**
|
92 |
+
* **<a href="https://chrome.google.com/webstore/detail/fifu-scraper/pccimcccbkdeeadhejdmnffmllpicola">Google Chrome Extension</a>**
|
93 |
+
|
94 |
+
[](http://coderisk.com/wp/plugin/featured-image-from-url/RIPS-KhjsokIF80)
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
== Installation ==
|
98 |
|
103 |
|
104 |
== Frequently Asked Questions ==
|
105 |
|
106 |
+
= Where is the external Featured Image box? =
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
|
108 |
+
* Next to the regular Featured Image box, in the post editor.
|
109 |
|
110 |
+
= Why isn't Preview button working? =
|
111 |
|
112 |
+
* Your image URL is invalid. Take a look at FIFU Settings > Getting Started.
|
113 |
|
114 |
+
= Does FIFU save the images in the media library? =
|
115 |
|
116 |
+
* Never.
|
117 |
|
118 |
+
= Is any action necessary before removing FIFU?
|
119 |
|
120 |
+
* Access Settings and run Clean Metadata.
|
121 |
|
122 |
+
= What's the metadata created by FIFU?
|
123 |
|
124 |
+
* Database registers that help WordPress components to work with the external images.
|
125 |
|
126 |
+
= What are the disadvantages of the external images?
|
127 |
|
128 |
+
* No image optimization or thumbnails. You may fix that with Jetpack (performance settings).
|
129 |
|
130 |
+
= What are the advantages of the external images?
|
131 |
|
132 |
+
* You save money on storage, processing and copyright.
|
133 |
|
|
|
|
|
|
|
|
|
|
|
134 |
|
135 |
== Screenshots ==
|
136 |
|
137 |
+
1. Just insert the image address or some keywords and click on preview button
|
138 |
|
139 |
+
2. If the image URL is correct, the image will be shown
|
140 |
|
141 |
+
3. Featured Video
|
142 |
|
143 |
+
4. Featured Slider
|
144 |
|
145 |
+
5. Featured Image Column
|
146 |
|
147 |
+
6. External Featured Media on home
|
148 |
|
149 |
+
7. External Featured Image on post
|
150 |
|
151 |
+
8. Featured Video on post
|
152 |
|
153 |
+
9. Featured Slider on post
|
154 |
|
155 |
+
10. Many settings
|
156 |
|
157 |
+
11. External Image Gallery
|
158 |
|
159 |
+
12. External Video Gallery
|
160 |
|
161 |
+
13. External Featured Media on WooCommerce shop
|
162 |
|
163 |
+
14. External Featured Media on cart
|
164 |
|
165 |
+
15. External Image Gallery
|
166 |
|
167 |
+
16. External Featured Image on lightbox
|
168 |
|
169 |
+
17. Zoom
|
170 |
|
171 |
+
18. Video Gallery
|
172 |
|
173 |
+
19. Featured Video on lightbox
|
174 |
|
175 |
+
20. Fullscreen
|
176 |
|
177 |
== Changelog ==
|
178 |
|
179 |
+
= 3.1.4 =
|
180 |
+
* Notice: FIFU is ready to receive translations; New language: Portuguese (Brazil); New features: Mute and Background Video; Improvement: og:image tag for internal images.
|
181 |
+
|
182 |
= 3.1.3 =
|
183 |
* Improvement (Premium): Same Height (each selector can have a different size ratio); Improvement: Image Metadata (query optimization); Deprecated: Maximum Sizes; Bug fix: conflict between Lazy Load and Storefront; Bug fix: conflict between Lazy Load and background-images.
|
184 |
|
788 |
|
789 |
== Upgrade Notice ==
|
790 |
|
791 |
+
= 3.1.4 =
|
792 |
+
* Notice: FIFU is ready to receive translations; New language: Portuguese (Brazil); New features: Mute and Background Video; Improvement: og:image tag for internal images.
|
793 |
+
|
794 |
= 3.1.3 =
|
795 |
* Improvement (Premium): Same Height (each selector can have a different size ratio); Improvement: Image Metadata (query optimization); Deprecated: Maximum Sizes; Bug fix: conflict between Lazy Load and Storefront; Bug fix: conflict between Lazy Load and background-images.
|
796 |
|