Version Description
- CSV files can now be used for FAQ imports
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 1.1.15 |
Comparing to | |
See all releases |
Code changes from version 1.1.14 to 1.1.15
- Functions/EWD_UFAQ_Import.php +2 -2
- Functions/EWD_UFAQ_Version_Update.php +1 -1
- Main.php +1 -1
- readme.txt +4 -0
Functions/EWD_UFAQ_Import.php
CHANGED
@@ -141,8 +141,8 @@ function EWD_UFAQ_Import_From_Spreadsheet() {
|
|
141 |
}
|
142 |
/* Move the file and store the URL to pass it onwards*/
|
143 |
/* Check that it is a .xls or .xlsx file */
|
144 |
-
if(!preg_match("/\.(xls.?)$/", $_FILES['FAQs_Spreadsheet']['name'])) {
|
145 |
-
$error = __('File must be .xls or .xlsx', 'EWD_UFAQ');
|
146 |
}
|
147 |
else {
|
148 |
$msg .= $_FILES['FAQs_Spreadsheet']['name'];
|
141 |
}
|
142 |
/* Move the file and store the URL to pass it onwards*/
|
143 |
/* Check that it is a .xls or .xlsx file */
|
144 |
+
if(!preg_match("/\.(xls.?)$/", $_FILES['FAQs_Spreadsheet']['name']) and !preg_match("/\.(csv.?)$/", $_FILES['FAQs_Spreadsheet']['name'])) {
|
145 |
+
$error = __('File must be .csv, .xls or .xlsx', 'EWD_UFAQ');
|
146 |
}
|
147 |
else {
|
148 |
$msg .= $_FILES['FAQs_Spreadsheet']['name'];
|
Functions/EWD_UFAQ_Version_Update.php
CHANGED
@@ -42,7 +42,7 @@ function EWD_UFAQ_Version_Update_Box() {
|
|
42 |
<h3 class='hndle'><span><?php _e("Thank You!", 'EWD_UFAQ') ?></span></h3>
|
43 |
<div class="inside">
|
44 |
<?php if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Subscribe to our YouTube channel ", "EWD_UFAQ"); ?></a> <?php _e("for tutorial videos on this and our other plugins!", "EWD_UFAQ");?> </li></ul>
|
45 |
-
<?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 1.1.
|
46 |
|
47 |
<?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
|
48 |
<?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.2.9!", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul><?php } */ ?>
|
42 |
<h3 class='hndle'><span><?php _e("Thank You!", 'EWD_UFAQ') ?></span></h3>
|
43 |
<div class="inside">
|
44 |
<?php if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Subscribe to our YouTube channel ", "EWD_UFAQ"); ?></a> <?php _e("for tutorial videos on this and our other plugins!", "EWD_UFAQ");?> </li></ul>
|
45 |
+
<?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 1.1.15!", "EWD_UFAQ"); ?><br> <a href='https://wordpress.org/support/view/plugin-reviews/ultimate-faqs?filter=5'><?php _e("Please rate our plugin", "EWD_UFAQ"); ?></a> <?php _e("if you find Ultimate FAQs useful!", "EWD_UFAQ");?> </li></ul><?php } ?>
|
46 |
|
47 |
<?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
|
48 |
<?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.2.9!", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul><?php } */ ?>
|
Main.php
CHANGED
@@ -7,7 +7,7 @@ Author: Etoile Web Design
|
|
7 |
Author URI: http://www.EtoileWebDesign.com/wordpress-plugins/
|
8 |
Terms and Conditions: http://www.etoilewebdesign.com/plugin-terms-and-conditions/
|
9 |
Text Domain: EWD_UFAQ
|
10 |
-
Version: 1.1.
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
7 |
Author URI: http://www.EtoileWebDesign.com/wordpress-plugins/
|
8 |
Terms and Conditions: http://www.etoilewebdesign.com/plugin-terms-and-conditions/
|
9 |
Text Domain: EWD_UFAQ
|
10 |
+
Version: 1.1.15
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
readme.txt
CHANGED
@@ -20,6 +20,7 @@ Want to decide exactly what order your FAQs are displayed in? Use our simple dra
|
|
20 |
|
21 |
Great for combining with our <a href='https://wordpress.org/plugins/front-end-only-users/'>user management plugin </a> to create a member's only FAQ area.
|
22 |
|
|
|
23 |
= Key Features =
|
24 |
|
25 |
* Create FAQ categories
|
@@ -126,6 +127,9 @@ For more questions and support you can post in the support forum:
|
|
126 |
9. All answers displayed in the 'list' FAQ mode
|
127 |
|
128 |
== Changelog ==
|
|
|
|
|
|
|
129 |
= 1.1.14 =
|
130 |
- Fixed a parent-child issue, where if a parent category was added in the include_category attribute, it was possible to end up with unexpected categories when an FAQ was in multiple categories
|
131 |
|
20 |
|
21 |
Great for combining with our <a href='https://wordpress.org/plugins/front-end-only-users/'>user management plugin </a> to create a member's only FAQ area.
|
22 |
|
23 |
+
|
24 |
= Key Features =
|
25 |
|
26 |
* Create FAQ categories
|
127 |
9. All answers displayed in the 'list' FAQ mode
|
128 |
|
129 |
== Changelog ==
|
130 |
+
= 1.1.15 =
|
131 |
+
- CSV files can now be used for FAQ imports
|
132 |
+
|
133 |
= 1.1.14 =
|
134 |
- Fixed a parent-child issue, where if a parent category was added in the include_category attribute, it was possible to end up with unexpected categories when an FAQ was in multiple categories
|
135 |
|