Version Description
(2022-12-08) = - Updated an incorrect link URL in the admin. - Plus the following from 2.2.0: - Added new tutorial videos to the settings pages that explain and show what each option does. - Added quick links to the admin about page to re-run the walk-through, view tutorial videos and suggest a feature. - Added new parameters to the Display FAQs block and the ultimate-faqs shortcode that let you enable/disable FAQ accordion and category accordion. - Updated dropdown block parameters to have a default value. - Accessibility updates (e.g. for the Expand button and the FAQ search label). - Tested with PHP 8.1. - Updated the export class for PHP 8 compatibility.
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.2.1
- readme.txt +12 -1
- ultimate-faqs.php +3 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Rustaurius, EtoileWebDesign
|
|
3 |
Tags: faq, faqs, accordion, woocommerce faq, gutenberg faq, faq block
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 6.1
|
6 |
-
Stable tag: 2.2.
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -261,6 +261,17 @@ For more info about the premium version, please see here: https://doc.etoilewebd
|
|
261 |
|
262 |
== Changelog ==
|
263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
= 2.2.0 (2022-12-08) =
|
265 |
- Added new tutorial videos to the settings pages that explain and show what each option does.
|
266 |
- Added quick links to the admin about page to re-run the walk-through, view tutorial videos and suggest a feature.
|
3 |
Tags: faq, faqs, accordion, woocommerce faq, gutenberg faq, faq block
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 6.1
|
6 |
+
Stable tag: 2.2.1
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
261 |
|
262 |
== Changelog ==
|
263 |
|
264 |
+
= 2.2.1 (2022-12-08) =
|
265 |
+
- Updated an incorrect link URL in the admin.
|
266 |
+
- Plus the following from 2.2.0:
|
267 |
+
- Added new tutorial videos to the settings pages that explain and show what each option does.
|
268 |
+
- Added quick links to the admin about page to re-run the walk-through, view tutorial videos and suggest a feature.
|
269 |
+
- Added new parameters to the Display FAQs block and the ultimate-faqs shortcode that let you enable/disable FAQ accordion and category accordion.
|
270 |
+
- Updated dropdown block parameters to have a default value.
|
271 |
+
- Accessibility updates (e.g. for the Expand button and the FAQ search label).
|
272 |
+
- Tested with PHP 8.1.
|
273 |
+
- Updated the export class for PHP 8 compatibility.
|
274 |
+
|
275 |
= 2.2.0 (2022-12-08) =
|
276 |
- Added new tutorial videos to the settings pages that explain and show what each option does.
|
277 |
- Added quick links to the admin about page to re-run the walk-through, view tutorial videos and suggest a feature.
|
ultimate-faqs.php
CHANGED
@@ -6,7 +6,7 @@ Description: FAQ and accordion plugin with easy to use Gutenberg blocks, shortco
|
|
6 |
Author URI: https://www.etoilewebdesign.com/
|
7 |
Terms and Conditions: https://www.etoilewebdesign.com/plugin-terms-and-conditions/
|
8 |
Text Domain: ultimate-faqs
|
9 |
-
Version: 2.2.
|
10 |
WC requires at least: 3.0
|
11 |
WC tested up to: 7.1
|
12 |
*/
|
@@ -46,7 +46,7 @@ class ewdufaqInit {
|
|
46 |
define( 'EWD_UFAQ_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
|
47 |
define( 'EWD_UFAQ_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
|
48 |
define( 'EWD_UFAQ_TEMPLATE_DIR', 'ewd-ufaq-templates' );
|
49 |
-
define( 'EWD_UFAQ_VERSION', '2.2.
|
50 |
|
51 |
define( 'EWD_UFAQ_FAQ_POST_TYPE', 'ufaq' );
|
52 |
define( 'EWD_UFAQ_FAQ_CATEGORY_TAXONOMY', 'ufaq-category' );
|
@@ -491,7 +491,7 @@ class ewdufaqInit {
|
|
491 |
<div class="ewd-ufaq-dashboard-new-upgrade-banner">
|
492 |
<div class="ewd-ufaq-dashboard-banner-icon"></div>
|
493 |
<div class="ewd-ufaq-dashboard-banner-buttons">
|
494 |
-
<a class="ewd-ufaq-dashboard-new-upgrade-button" href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=
|
495 |
</div>
|
496 |
<div class="ewd-ufaq-dashboard-banner-text">
|
497 |
<div class="ewd-ufaq-dashboard-banner-title">
|
6 |
Author URI: https://www.etoilewebdesign.com/
|
7 |
Terms and Conditions: https://www.etoilewebdesign.com/plugin-terms-and-conditions/
|
8 |
Text Domain: ultimate-faqs
|
9 |
+
Version: 2.2.1
|
10 |
WC requires at least: 3.0
|
11 |
WC tested up to: 7.1
|
12 |
*/
|
46 |
define( 'EWD_UFAQ_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
|
47 |
define( 'EWD_UFAQ_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
|
48 |
define( 'EWD_UFAQ_TEMPLATE_DIR', 'ewd-ufaq-templates' );
|
49 |
+
define( 'EWD_UFAQ_VERSION', '2.2.1' );
|
50 |
|
51 |
define( 'EWD_UFAQ_FAQ_POST_TYPE', 'ufaq' );
|
52 |
define( 'EWD_UFAQ_FAQ_CATEGORY_TAXONOMY', 'ufaq-category' );
|
491 |
<div class="ewd-ufaq-dashboard-new-upgrade-banner">
|
492 |
<div class="ewd-ufaq-dashboard-banner-icon"></div>
|
493 |
<div class="ewd-ufaq-dashboard-banner-buttons">
|
494 |
+
<a class="ewd-ufaq-dashboard-new-upgrade-button" href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1&utm_source=ufaq_admin&utm_content=banner" target="_blank">UPGRADE NOW</a>
|
495 |
</div>
|
496 |
<div class="ewd-ufaq-dashboard-banner-text">
|
497 |
<div class="ewd-ufaq-dashboard-banner-title">
|