Ultimate FAQ - Version 2.1.17

Version Description

(2022-08-22) = - Updating a condition to make sure the new block patterns do not cause an error on WordPress installations using a version of WordPress older than 5.5.

Download this release

Release Info

Developer Rustaurius
Plugin Icon 128x128 Ultimate FAQ
Version 2.1.17
Comparing to
See all releases

Code changes from version 2.1.16 to 2.1.17

Files changed (2) hide show
  1. readme.txt +4 -1
  2. 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.0
6
- Stable tag: 2.1.16
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -267,6 +267,9 @@ Video 3 - FAQs Ordering
267
 
268
  == Changelog ==
269
 
 
 
 
270
  = 2.1.16 (2022-08-12) =
271
  - Introducing new block patterns, which can be used to integrate FAQs directly into your block-based theme templates.
272
  - Added a parameter to the Display FAQs block, as well as an attribute to the ultimate-faqs shortcode, that lets you enable/disable grouping FAQs by category for that specific instance.
3
  Tags: faq, faqs, accordion, woocommerce faq, gutenberg faq, faq block
4
  Requires at least: 5.0
5
  Tested up to: 6.0
6
+ Stable tag: 2.1.17
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
267
 
268
  == Changelog ==
269
 
270
+ = 2.1.17 (2022-08-22) =
271
+ - Updating a condition to make sure the new block patterns do not cause an error on WordPress installations using a version of WordPress older than 5.5.
272
+
273
  = 2.1.16 (2022-08-12) =
274
  - Introducing new block patterns, which can be used to integrate FAQs directly into your block-based theme templates.
275
  - Added a parameter to the Display FAQs block, as well as an attribute to the ultimate-faqs shortcode, that lets you enable/disable grouping FAQs by category for that specific instance.
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.1.16
10
  WC requires at least: 3.0
11
  WC tested up to: 6.8
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.1.16' );
50
 
51
  define( 'EWD_UFAQ_FAQ_POST_TYPE', 'ufaq' );
52
  define( 'EWD_UFAQ_FAQ_CATEGORY_TAXONOMY', 'ufaq-category' );
@@ -114,7 +114,7 @@ class ewdufaqInit {
114
 
115
  new ewdufaqAJAX();
116
  new ewdufaqBlocks();
117
- new ewdufaqPatterns();
118
  new ewdufaqNotifications();
119
  new ewdufaqOrderingTable();
120
  new ewdufaqUltimateWPMail();
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.1.17
10
  WC requires at least: 3.0
11
  WC tested up to: 6.8
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.1.17' );
50
 
51
  define( 'EWD_UFAQ_FAQ_POST_TYPE', 'ufaq' );
52
  define( 'EWD_UFAQ_FAQ_CATEGORY_TAXONOMY', 'ufaq-category' );
114
 
115
  new ewdufaqAJAX();
116
  new ewdufaqBlocks();
117
+ if ( function_exists( 'register_block_pattern' ) ) { new ewdufaqPatterns(); }
118
  new ewdufaqNotifications();
119
  new ewdufaqOrderingTable();
120
  new ewdufaqUltimateWPMail();