Ultimate FAQ - Version 1.0.6

Version Description

  • Fixed an issue where new users weren't able to update ordering even after upgrading to premium
Download this release

Release Info

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

Code changes from version 1.0.5 to 1.0.6

Functions/EWD_UFAQ_Version_Update.php CHANGED
@@ -10,7 +10,10 @@ function EWD_UFAQ_Version_Update() {
10
 
11
  if (is_array($FAQs)) {
12
  foreach ($FAQs as $FAQ) {
13
- update_post_meta($FAQ->ID, 'ufaq_order', 999);
 
 
 
14
  }
15
  }
16
 
10
 
11
  if (is_array($FAQs)) {
12
  foreach ($FAQs as $FAQ) {
13
+ $Current_Order = get_post_meta($FAQ->ID, "ufaq_order", true);
14
+ if ($Current_Order == "") {
15
+ update_post_meta($FAQ->ID, 'ufaq_order', 999);
16
+ }
17
  }
18
  }
19
 
Functions/Update_Admin_Databases.php CHANGED
@@ -1,6 +1,14 @@
1
  <?php
2
  /* The file contains all of the functions which make changes to the WordPress tables */
3
 
 
 
 
 
 
 
 
 
4
 
5
  function EWD_UFAQ_UpdateOptions() {
6
  $Custom_CSS = $_POST['custom_css'];
1
  <?php
2
  /* The file contains all of the functions which make changes to the WordPress tables */
3
 
4
+ function EWD_UFAQ_Add_Post_Order_Meta($post_id) {
5
+ $Current_Order = get_post_meta($post_id, "ufaq_order", true);
6
+
7
+ if ($Current_Order == "") {
8
+ update_post_meta($post_id, "ufaq_order", 1000);
9
+ }
10
+ }
11
+ add_action('save_post_ufaq', 'EWD_UFAQ_Add_Post_Order_Meta');
12
 
13
  function EWD_UFAQ_UpdateOptions() {
14
  $Custom_CSS = $_POST['custom_css'];
Main.php CHANGED
@@ -3,18 +3,18 @@
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: Tim Ruse
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.0.5
11
  */
12
 
13
  global $ewd_ufaq_message;
14
  global $UFAQ_Full_Version;
15
  global $EWD_UFAQ_Version;
16
 
17
- $EWD_UFAQ_Version = '1.0.2';
18
 
19
  define( 'EWD_UFAQ_CD_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
20
  define( 'EWD_UFAQ_CD_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
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: EWD_UFAQ
10
+ Version: 1.0.6
11
  */
12
 
13
  global $ewd_ufaq_message;
14
  global $UFAQ_Full_Version;
15
  global $EWD_UFAQ_Version;
16
 
17
+ $EWD_UFAQ_Version = '1.0.6';
18
 
19
  define( 'EWD_UFAQ_CD_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
20
  define( 'EWD_UFAQ_CD_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
readme.txt CHANGED
@@ -1,18 +1,22 @@
1
  === Plugin Name ===
2
  Contributors: Rustaurius, EtoileWebDesign
3
- Tags: frequently asked questions, FAQ, easy FAQ, knowledge base, simple FAQ, FAQ categories, FAQs, knowledgebase, answer, answers, faq page, FAQ Plugin, help, help desk, helpdesk, questions, wordpress faq, faq list, custom post type with accordion, faq list, faq with accordion, jquery ui accordion, jquery-ui, shortcodes, wordpress, WordPress Plugin, Categories, social media, widget, widgets, statistics, AJAX, analytics, responsive
4
- Requires at least: 3.5.0
5
- Tested up to: 4.3
6
  License: GPLv3
7
  License URI:http://www.gnu.org/licenses/gpl-3.0.html
8
 
9
- A plugin that lets you create FAQs (frequently asked questions), organize them, publicize them, etc. and insert them using shortcodes
10
 
11
  == Description ==
12
 
13
  <a href='http://www.etoilewebdesign.com/ultimate-faq-demo/'>FAQ Demo</a>
14
 
15
- Create, organize and publicize your Frequently Asked Questions in no time through your Wordpress Admin Panel with this easy to use plugin.
 
 
 
 
16
 
17
  = Key Features =
18
 
@@ -97,10 +101,21 @@ You can customize the plugin by adding code to the Custom CSS box on the setting
97
  For more questions and support you can post in the support forum:
98
  <https://wordpress.org/support/plugin/ultimate-faqs>
99
 
100
- 1. Admin area
101
- 2. Sample FAQ page
 
 
 
 
 
 
 
 
102
 
103
  == Changelog ==
 
 
 
104
  = 1.0.5 =
105
  - Minor CSS update
106
 
1
  === Plugin Name ===
2
  Contributors: Rustaurius, EtoileWebDesign
3
+ Tags: frequently asked questions, FAQ, FAQs, easy FAQ, knowledge base, simple FAQ, FAQ categories, FAQs, knowledgebase, answer, answers, faq page, FAQ Plugin, help, help desk, helpdesk, questions, wordpress faq, FAQ list, FAQ accordion, custom post type with accordion, faq list, faq with accordion, jquery ui accordion, jquery-ui, shortcodes, wordpress, WordPress Plugin, Categories, social media, facebook, widget, widgets, statistics, AJAX, analytics, responsive
4
+ Requires at least: 3.7.0
5
+ Tested up to: 4.3.1
6
  License: GPLv3
7
  License URI:http://www.gnu.org/licenses/gpl-3.0.html
8
 
9
+ A simple FAQ plugin that lets you create or your users FAQs, order FAQs, publicize FAQs, etc. and insert a list or AJAX FAQ search using shortcodes
10
 
11
  == Description ==
12
 
13
  <a href='http://www.etoilewebdesign.com/ultimate-faq-demo/'>FAQ Demo</a>
14
 
15
+ Create, organize and publicize your Frequently Asked Questions in no time through your Wordpress Admin Panel with the incredibly easy-to-use, responsive Ultimate FAQ plugin. You can use either the accordion FAQ style, to display one answer on click, or the list FAQ style, to have answers displayed by default. Features include statistics on how many times FAQs have been viewed, styling options, display and ordering options among many others.
16
+
17
+ Want to decide exactly what order your FAQs are displayed in? Use our simple drag-and-drop reordering feature! Create SEO-friendly links to individual FAQ posts to simply direct customers to exactly the right answer, right away. You can even let your customers add to your FAQ list with [submit-question] shortcode, which lets visitors submit a question and even propose and answer for it! Easily add links to popular social media, such as Facebook, Twitter and Pinterest so that your customers can help you spread the word!
18
+
19
+ 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.
20
 
21
  = Key Features =
22
 
101
  For more questions and support you can post in the support forum:
102
  <https://wordpress.org/support/plugin/ultimate-faqs>
103
 
104
+ == Screenshots ==
105
+
106
+ 1. Simple Car FAQ demo page
107
+ 2. Example responsive, open FAQ
108
+ 3. The AJAX FAQ search shortcode in use
109
+ 4. Simple user submitted FAQs form
110
+ 5. Admin area showing all FAQs with their number of views as well as their categories
111
+ 6. Admin simple drag-and-drop FAQ ordering area
112
+ 7. Responsive, simple styling options
113
+ 8. All answers displayed in the 'list' FAQ mode
114
 
115
  == Changelog ==
116
+ = 1.0.6 =
117
+ - Fixed an issue where new users weren't able to update ordering even after upgrading to premium
118
+
119
  = 1.0.5 =
120
  - Minor CSS update
121