Ultimate FAQ - Version 1.5.2

Version Description

  • Fixed a labelling issue for the submit FAQ shortcode
Download this release

Release Info

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

Code changes from version 1.5.1 to 1.5.2

Files changed (4) hide show
  1. Main.php +1 -1
  2. Shortcodes/SubmitFAQ.php +4 -4
  3. html/OptionsPage.php +1 -1
  4. readme.txt +3 -0
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.5.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.5.2
11
  */
12
 
13
  global $ewd_ufaq_message;
Shortcodes/SubmitFAQ.php CHANGED
@@ -32,7 +32,7 @@ function Insert_Question_Form($atts) {
32
  $Review_Author_Label = get_option("EWD_UFAQ_Review_Author_Label");
33
  if ($Review_Author_Label == "") {$Review_Author_Label = __("Review Author", 'EWD_UFAQ');}
34
  $What_Name_With_Review_Label = get_option("EWD_UFAQ_What_Name_With_Review_Label");
35
- if ($What_Name_With_Review_Label == "") {$What_Name_With_Review_Label = __("What name should be displayed with your review?", 'EWD_UFAQ');}
36
 
37
  if (isset($_POST['Submit_Question'])) {$user_update = EWD_UFAQ_Submit_Question($success_message);}
38
 
@@ -75,13 +75,13 @@ function Insert_Question_Form($atts) {
75
  }
76
 
77
  $ReturnString .= "<div class='form-field'>";
78
- $ReturnString .= "<div id='ewd-urp-review-author' class='ewd-urp-review-label'>";
79
  $ReturnString .= $Review_Author_Label . ": ";
80
  $ReturnString .= "</div>";
81
- $ReturnString .= "<div id='ewd-urp-review-author-input' class='ewd-urp-review-input'>";
82
  $ReturnString .= "<input type='text' name='Post_Author' id='Post_Author' />";
83
  $ReturnString .= "</div>";
84
- $ReturnString .= "<div id='ewd-urp-author-explanation' class='ewd-urp-review-explanation'>";
85
  $ReturnString .= "<p>" . $What_Name_With_Review_Label . "</p>";
86
  $ReturnString .= "</div>";
87
  $ReturnString .= "</div>";
32
  $Review_Author_Label = get_option("EWD_UFAQ_Review_Author_Label");
33
  if ($Review_Author_Label == "") {$Review_Author_Label = __("Review Author", 'EWD_UFAQ');}
34
  $What_Name_With_Review_Label = get_option("EWD_UFAQ_What_Name_With_Review_Label");
35
+ if ($What_Name_With_Review_Label == "") {$What_Name_With_Review_Label = __("What name should be displayed with your FAQ?", 'EWD_UFAQ');}
36
 
37
  if (isset($_POST['Submit_Question'])) {$user_update = EWD_UFAQ_Submit_Question($success_message);}
38
 
75
  }
76
 
77
  $ReturnString .= "<div class='form-field'>";
78
+ $ReturnString .= "<div id='ewd-faq-review-author' class='ewd-faq-review-label'>";
79
  $ReturnString .= $Review_Author_Label . ": ";
80
  $ReturnString .= "</div>";
81
+ $ReturnString .= "<div id='ewd-faq-review-author-input' class='ewd-faq-review-input'>";
82
  $ReturnString .= "<input type='text' name='Post_Author' id='Post_Author' />";
83
  $ReturnString .= "</div>";
84
+ $ReturnString .= "<div id='ewd-faq-author-explanation' class='ewd-faq-review-explanation'>";
85
  $ReturnString .= "<p>" . $What_Name_With_Review_Label . "</p>";
86
  $ReturnString .= "</div>";
87
  $ReturnString .= "</div>";
html/OptionsPage.php CHANGED
@@ -736,7 +736,7 @@
736
 
737
  <div id='ufaq-styling-options' class="ufaq-options-div ufaq-options-flex">
738
  <div class='ufaq-subsection'>
739
- <div class='ufaq-subsection-header'>Toogle Symbol</div>
740
  <div class='ufaq-subsection-content'>
741
  <div class='ufaq-option ufaq-styling-option'>
742
  <div class='ufaq-option-one-line'><input type='radio' name='toggle_symbol' value='A' <?php if ($Toggle_Symbol == "A") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ufaq-toggle-symbol'>a A</span></div><br />
736
 
737
  <div id='ufaq-styling-options' class="ufaq-options-div ufaq-options-flex">
738
  <div class='ufaq-subsection'>
739
+ <div class='ufaq-subsection-header'>Toggle Symbol</div>
740
  <div class='ufaq-subsection-content'>
741
  <div class='ufaq-option ufaq-styling-option'>
742
  <div class='ufaq-option-one-line'><input type='radio' name='toggle_symbol' value='A' <?php if ($Toggle_Symbol == "A") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ufaq-toggle-symbol'>a A</span></div><br />
readme.txt CHANGED
@@ -209,6 +209,9 @@ Video 3 - FAQs Ordering
209
  9. All answers displayed in the 'list' FAQ mode
210
 
211
  == Changelog ==
 
 
 
212
  = 1.5.1 =
213
  - Added in a message if no FAQs are found in search, and a label for that message in the back-end
214
 
209
  9. All answers displayed in the 'list' FAQ mode
210
 
211
  == Changelog ==
212
+ = 1.5.2 =
213
+ - Fixed a labelling issue for the submit FAQ shortcode
214
+
215
  = 1.5.1 =
216
  - Added in a message if no FAQs are found in search, and a label for that message in the back-end
217