Version Description
- Added spacing and a span for category post counts
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 1.5.38 |
Comparing to | |
See all releases |
Code changes from version 1.5.37 to 1.5.38
- Main.php +2 -2
- Shortcodes/DisplayFAQs.php +1 -1
- readme.txt +50 -29
Main.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name: FAQ
|
4 |
Plugin URI: http://www.EtoileWebDesign.com/wordpress-plugins/
|
5 |
Description: A plugin that lets you create FAQs (frequently asked questions), organize them, publicize them, etc.
|
6 |
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: ultimate-faqs
|
10 |
-
Version: 1.5.
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: Ultimate FAQ
|
4 |
Plugin URI: http://www.EtoileWebDesign.com/wordpress-plugins/
|
5 |
Description: A plugin that lets you create FAQs (frequently asked questions), organize them, publicize them, etc.
|
6 |
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: ultimate-faqs
|
10 |
+
Version: 1.5.38
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
Shortcodes/DisplayFAQs.php
CHANGED
@@ -250,7 +250,7 @@ function Display_FAQs($atts) {
|
|
250 |
$ReturnString .= "<div class='ufaq-faq-category-title";
|
251 |
if ($Category_Toggle == "Yes") {$ReturnString .= " ufaq-faq-category-title-toggle";}
|
252 |
$ReturnString .= "' data-categoryid='" . $Category->term_id . "'>";
|
253 |
-
$ReturnString .= "<" . $UFAQ_Styling_Category_Heading_Type . ">" . $Category->name . ($Group_By_Category_Count == "Yes" ? "(" . $FAQ_Query->post_count . ")" : "") . "</" . $UFAQ_Styling_Category_Heading_Type . ">";
|
254 |
$ReturnString .= "</div>";
|
255 |
$ReturnString .= "<div class='ufaq-faq-category-inner";
|
256 |
if ($Category_Toggle == "Yes") {$ReturnString .= " ufaq-faq-category-body-hidden";}
|
250 |
$ReturnString .= "<div class='ufaq-faq-category-title";
|
251 |
if ($Category_Toggle == "Yes") {$ReturnString .= " ufaq-faq-category-title-toggle";}
|
252 |
$ReturnString .= "' data-categoryid='" . $Category->term_id . "'>";
|
253 |
+
$ReturnString .= "<" . $UFAQ_Styling_Category_Heading_Type . ">" . $Category->name . ($Group_By_Category_Count == "Yes" ? " <span>(" . $FAQ_Query->post_count . ")" : "") . "</span></" . $UFAQ_Styling_Category_Heading_Type . ">";
|
254 |
$ReturnString .= "</div>";
|
255 |
$ReturnString .= "<div class='ufaq-faq-category-inner";
|
256 |
if ($Category_Toggle == "Yes") {$ReturnString .= " ufaq-faq-category-body-hidden";}
|
readme.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
=== FAQ ===
|
2 |
Contributors: Rustaurius, EtoileWebDesign
|
3 |
Tags: faq, faqs, woocommerce faq, frequently asked questions, faq widget
|
4 |
Requires at least: 3.9.0
|
@@ -12,17 +12,7 @@ FAQ plugin that lets you easily create, order and publicize FAQs, insert 3 style
|
|
12 |
|
13 |
<a href='http://www.etoilewebdesign.com/ultimate-faq-demo/'>FAQ Demo</a>
|
14 |
|
15 |
-
FAQ plugin that lets you create FAQ, organize FAQs and publicize your FAQ in no time through your Wordpress admin panel. Select from multiple FAQ styles and FAQ layouts.
|
16 |
-
|
17 |
-
<strong>With WooCommerce Integration!</strong> See the "Add FAQ to WooCommerce" section below for full details and features.
|
18 |
-
|
19 |
-
** We are also pleased to announce the introduction of a free new premium 7-day trial feature, which users can choose to test out before buying the premium version! **
|
20 |
-
|
21 |
-
`
|
22 |
-
[ultimate-faqs]
|
23 |
-
`
|
24 |
-
|
25 |
-
Simply insert the shortcode above into any page to display your FAQs.
|
26 |
|
27 |
= Key FAQ Features =
|
28 |
* Unlimited FAQ, unlimited FAQ tag and unlimited FAQ category support
|
@@ -32,24 +22,34 @@ Simply insert the shortcode above into any page to display your FAQs.
|
|
32 |
* Export all FAQs to a PDF to create a user manual
|
33 |
* Insert custom CSS to style your FAQ posts
|
34 |
|
35 |
-
|
36 |
|
37 |
-
|
38 |
|
39 |
-
|
|
|
|
|
40 |
|
41 |
-
|
42 |
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
|
45 |
-
=
|
46 |
|
47 |
-
Using WooCommerce to sell your products? Easily add an FAQ tab to each product page, so your customers can see answers to common FAQ questions about the products they're browsing. It's the most comprehensive
|
48 |
|
49 |
-
For more information about WooCommerce integration, please see the following video:
|
50 |
|
51 |
[youtube https://www.youtube.com/watch?v=cH3p0fW4c5o]
|
52 |
|
|
|
|
|
|
|
|
|
53 |
= Additional Features =
|
54 |
* Select FAQ animation options for displaying FAQ posts
|
55 |
* Toggle FAQ accordion (close open FAQ when a new one is opened) behaviour on/off
|
@@ -58,12 +58,13 @@ For more information about WooCommerce integration, please see the following vid
|
|
58 |
* Responsive FAQ design
|
59 |
* Group FAQs by category for easy FAQ navigation
|
60 |
|
61 |
-
This FAQ plugin is 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.
|
62 |
|
63 |
Ultimate FAQ uses the WordPress custom post type functionality to create an FAQ post type, allowing for smart and easy FAQ integration.
|
64 |
|
65 |
= Premium FAQ features include =
|
66 |
-
|
|
|
67 |
* WooCommerce FAQ tab with specific FAQs for each product on product page (<a href='https://www.youtube.com/watch?v=cH3p0fW4c5o'>YouTube Video</a>)
|
68 |
* Different FAQ display styles for your frequently asked questions
|
69 |
* Share FAQs on social media
|
@@ -78,6 +79,8 @@ Ultimate FAQ uses the WordPress custom post type functionality to create an FAQ
|
|
78 |
* Drag and drop precise re-ordering of FAQs
|
79 |
* Change the FAQ permalink slug base
|
80 |
|
|
|
|
|
81 |
= FAQ Shortcodes =
|
82 |
* [ultimate-faqs]: display all FAQs, or only specific FAQ categories using include_category and exclude_category attributes (both take a comma-separated list of category slugs)
|
83 |
* [popular-faqs]: displays a number of the most viewed FAQs (5 unless specified).
|
@@ -86,7 +89,7 @@ Ultimate FAQ uses the WordPress custom post type functionality to create an FAQ
|
|
86 |
* [ultimate-faq-search]: display an FAQ search form that allows users to find FAQs with a specific string in the FAQ title or body of the FAQ post (premium).
|
87 |
* [submit-question]: display a form that allows users to submit FAQs of their own and, if enabled, enter an FAQ answer to their submitted FAQ question as well (premium).
|
88 |
|
89 |
-
For further information and purchasing options, please visit our <strong><a href="http://www.etoilewebdesign.com/plugins/ultimate-faq/">WordPress FAQ plugin</a></strong> homepage.
|
90 |
|
91 |
= Translations =
|
92 |
- Italian (Thanks to <a href='http://www.nimdaweb.it/'>Nimdaweb</a>)
|
@@ -234,7 +237,7 @@ Video 3 - FAQs Ordering
|
|
234 |
|
235 |
== Screenshots ==
|
236 |
|
237 |
-
1.
|
238 |
2. Example of the "Color Block" FAQ display style
|
239 |
3. Example of the "Block" FAQ display style
|
240 |
4. The AJAX FAQ search shortcode in use
|
@@ -242,13 +245,31 @@ Video 3 - FAQs Ordering
|
|
242 |
6. All answers displayed in the 'list' FAQ mode
|
243 |
7. WooCommerce product page with "FAQs" tab
|
244 |
8. Example of FAQ page with custom FAQ font icons
|
245 |
-
9.
|
246 |
-
10.
|
247 |
-
11.
|
248 |
-
12.
|
249 |
-
13.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
|
251 |
== Changelog ==
|
|
|
|
|
|
|
252 |
= 1.5.37 =
|
253 |
- Fixed an error with the "Main FAQ page" permalink setting
|
254 |
|
1 |
+
=== Ultimate FAQ ===
|
2 |
Contributors: Rustaurius, EtoileWebDesign
|
3 |
Tags: faq, faqs, woocommerce faq, frequently asked questions, faq widget
|
4 |
Requires at least: 3.9.0
|
12 |
|
13 |
<a href='http://www.etoilewebdesign.com/ultimate-faq-demo/'>FAQ Demo</a>
|
14 |
|
15 |
+
FAQ plugin that lets you create FAQ (frequently asked questions), organize FAQs and publicize your FAQ in no time through your Wordpress admin panel. Select from multiple FAQ styles and FAQ layouts.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
= Key FAQ Features =
|
18 |
* Unlimited FAQ, unlimited FAQ tag and unlimited FAQ category support
|
22 |
* Export all FAQs to a PDF to create a user manual
|
23 |
* Insert custom CSS to style your FAQ posts
|
24 |
|
25 |
+
[youtube https://www.youtube.com/watch?v=xeGVZnVrZ6I]
|
26 |
|
27 |
+
<strong>With WooCommerce Integration!</strong> See the "WooCommerce FAQ" section below for full details and features.
|
28 |
|
29 |
+
`
|
30 |
+
[ultimate-faqs]
|
31 |
+
`
|
32 |
|
33 |
+
Simply insert the shortcode above into any page to display your FAQs.
|
34 |
|
35 |
+
You can use either the toggle FAQ and/or accordion responsive FAQ style, to display one expanded FAQ answer on click, or choose to display all FAQs on page load, with the optional responsive list FAQ style that offers a more traditional FAQ layout.
|
36 |
+
|
37 |
+
FAQ features include frequently asked question statistics that show how many times FAQs have been viewed, FAQ styling options, FAQ categories and FAQ tags, FAQ display and FAQ ordering options, among many other FAQ options. Includes an FAQ shortcode helper, that lets you create FAQ shortcodes with FAQ attributes without having to manually enter FAQs.
|
38 |
+
|
39 |
+
Ultimate FAQ isn't just for frequently asked questions. It also works great for any content that works similarly to FAQ and that needs to be hidden until it is clicked, like job postings, recipes, etc.!
|
40 |
|
41 |
+
= WooCommerce FAQ =
|
42 |
|
43 |
+
Using WooCommerce to sell your products? Easily add an FAQ tab to each product page, so your customers can see answers to common FAQ questions about the products they're browsing. It's the most comprehensive WooCommerce FAQs solution!
|
44 |
|
45 |
+
For more information about WooCommerce FAQs integration, please see the following video:
|
46 |
|
47 |
[youtube https://www.youtube.com/watch?v=cH3p0fW4c5o]
|
48 |
|
49 |
+
Want to decide exactly what order your FAQs are displayed in? Use our simple FAQ drag-and-drop reordering feature! Create SEO-friendly FAQ links to individual FAQ posts to simply direct customers to exactly the right FAQ answer, right away. Easily add links to your FAQ to popular social media, such as Facebook, Twitter and Pinterest so that your customers can help you spread the word about your FAQ!
|
50 |
+
|
51 |
+
With the smart [submit-question] FAQ shortcode (premium), you can let your customers add to your custom FAQ list by submitting an FAQ question and even proposing an FAQ answer for it!
|
52 |
+
|
53 |
= Additional Features =
|
54 |
* Select FAQ animation options for displaying FAQ posts
|
55 |
* Toggle FAQ accordion (close open FAQ when a new one is opened) behaviour on/off
|
58 |
* Responsive FAQ design
|
59 |
* Group FAQs by category for easy FAQ navigation
|
60 |
|
61 |
+
This FAQ frequently asked questions plugin is 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.
|
62 |
|
63 |
Ultimate FAQ uses the WordPress custom post type functionality to create an FAQ post type, allowing for smart and easy FAQ integration.
|
64 |
|
65 |
= Premium FAQ features include =
|
66 |
+
|
67 |
+
* Choose from 15 toggle icon sets for your frequently asked questions
|
68 |
* WooCommerce FAQ tab with specific FAQs for each product on product page (<a href='https://www.youtube.com/watch?v=cH3p0fW4c5o'>YouTube Video</a>)
|
69 |
* Different FAQ display styles for your frequently asked questions
|
70 |
* Share FAQs on social media
|
79 |
* Drag and drop precise re-ordering of FAQs
|
80 |
* Change the FAQ permalink slug base
|
81 |
|
82 |
+
** We are also pleased to offer a free premium 7-day trial feature, which users can choose to test out before buying the premium version! **
|
83 |
+
|
84 |
= FAQ Shortcodes =
|
85 |
* [ultimate-faqs]: display all FAQs, or only specific FAQ categories using include_category and exclude_category attributes (both take a comma-separated list of category slugs)
|
86 |
* [popular-faqs]: displays a number of the most viewed FAQs (5 unless specified).
|
89 |
* [ultimate-faq-search]: display an FAQ search form that allows users to find FAQs with a specific string in the FAQ title or body of the FAQ post (premium).
|
90 |
* [submit-question]: display a form that allows users to submit FAQs of their own and, if enabled, enter an FAQ answer to their submitted FAQ question as well (premium).
|
91 |
|
92 |
+
For further information and purchasing options for our frequently asked questions plugin, please visit our <strong><a href="http://www.etoilewebdesign.com/plugins/ultimate-faq/">WordPress FAQ plugin</a></strong> homepage.
|
93 |
|
94 |
= Translations =
|
95 |
- Italian (Thanks to <a href='http://www.nimdaweb.it/'>Nimdaweb</a>)
|
237 |
|
238 |
== Screenshots ==
|
239 |
|
240 |
+
1. FAQ demo page - Default display style
|
241 |
2. Example of the "Color Block" FAQ display style
|
242 |
3. Example of the "Block" FAQ display style
|
243 |
4. The AJAX FAQ search shortcode in use
|
245 |
6. All answers displayed in the 'list' FAQ mode
|
246 |
7. WooCommerce product page with "FAQs" tab
|
247 |
8. Example of FAQ page with custom FAQ font icons
|
248 |
+
9. FAQ with comments enabled
|
249 |
+
10. FAQ with ratings enabled
|
250 |
+
11. FAQ with post author and date displayed
|
251 |
+
12. FAQ social sharing
|
252 |
+
13. Mobile view of FAQs
|
253 |
+
14. Ultimate FAQs plugin dashboard
|
254 |
+
15. Admin area showing all FAQs with their number of views as well as their categories
|
255 |
+
16. View of custom fields on the FAQ post edit screen
|
256 |
+
17. FAQ tab in WooCommerce product edit
|
257 |
+
18. FAQ Categories
|
258 |
+
19. FAQ Tags
|
259 |
+
20. "Basic" area of the "Settings" tab
|
260 |
+
21. "Premium" area of the "Settings" tab
|
261 |
+
22. "Ordering" area of the "Settings" tab
|
262 |
+
23. "Fields" area of the "Settings" tab
|
263 |
+
24. "Labelling" area of the "Settings" tab
|
264 |
+
25. "Styling" area of the "Settings" tab
|
265 |
+
26. FAQ widgets
|
266 |
+
|
267 |
+
|
268 |
|
269 |
== Changelog ==
|
270 |
+
= 1.5.38 =
|
271 |
+
- Added spacing and a span for category post counts
|
272 |
+
|
273 |
= 1.5.37 =
|
274 |
- Fixed an error with the "Main FAQ page" permalink setting
|
275 |
|