Version Description
- Fixed a small Dashboard error that a number of users were experiencing
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 1.5.15 |
Comparing to | |
See all releases |
Code changes from version 1.5.14 to 1.5.15
- Main.php +1 -1
- html/DashboardPage.php +29 -27
- 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.
|
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.15
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
html/DashboardPage.php
CHANGED
@@ -57,33 +57,35 @@
|
|
57 |
</div>
|
58 |
</div>
|
59 |
</div> <!-- ewd-ufaq-dashboard-top-upgrade-left -->
|
60 |
-
|
61 |
-
<div id="ewd-dashboard-
|
62 |
-
<div
|
63 |
-
|
64 |
-
|
65 |
-
<div class="
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
|
|
|
|
87 |
</div> <!-- ewd-ufaq-dashboard-top-upgrade -->
|
88 |
<?php } ?>
|
89 |
|
57 |
</div>
|
58 |
</div>
|
59 |
</div> <!-- ewd-ufaq-dashboard-top-upgrade-left -->
|
60 |
+
<?php if (get_option("EWD_UFAQ_Trial_Happening") != "No") { ?>
|
61 |
+
<div id="ewd-ufaq-dashboard-top-upgrade-right">
|
62 |
+
<div id="ewd-dashboard-pro" class="postbox upcp-pro upcp-postbox-collapsible" >
|
63 |
+
<div class="handlediv" title="Click to expand"></div>
|
64 |
+
<h3 class="hndle ewd-dashboard-h3"> </h3>
|
65 |
+
<div class="inside">
|
66 |
+
<div class="topPart">
|
67 |
+
<?php
|
68 |
+
if(!get_option("EWD_UFAQ_Trial_Happening")){
|
69 |
+
_e("Want to try out the premium features first?", 'EWD_UFAQ');
|
70 |
+
}
|
71 |
+
else{
|
72 |
+
_e("Your free trial is currently active", 'EWD_UFAQ');
|
73 |
+
}
|
74 |
+
?>
|
75 |
+
</div>
|
76 |
+
<div class="clear"></div>
|
77 |
+
<div class="bottomPart">
|
78 |
+
<?php if(!get_option("EWD_UFAQ_Trial_Happening")){ ?>
|
79 |
+
Use code<br /><span class="freeTrialText"> EWD Trial </span><br />for a free 7-day trial!
|
80 |
+
<?php }
|
81 |
+
else{ ?>
|
82 |
+
Your trial expires at <span class="freeTrialText"><?php echo date("Y-m-d H:i:s", get_option("EWD_UFAQ_Trial_Expiry_Time")); ?> GMT</span>. <a href="http://www.etoilewebdesign.com/plugins/ultimate-faq/" class="freeTrialPurchaseLink" target="_blank">Upgrade here</a> before then to retain any premium changes made!
|
83 |
+
<?php } ?>
|
84 |
+
</div> <!-- bottomPart -->
|
85 |
+
</div> <!-- inside -->
|
86 |
+
</div> <!-- postbox -->
|
87 |
+
</div> <!-- ewd-ufaq-dashboard-top-upgrade-right -->
|
88 |
+
<?php } ?>
|
89 |
</div> <!-- ewd-ufaq-dashboard-top-upgrade -->
|
90 |
<?php } ?>
|
91 |
|
readme.txt
CHANGED
@@ -247,6 +247,9 @@ Video 3 - FAQs Ordering
|
|
247 |
13. View of FAQ custom fields in the admin
|
248 |
|
249 |
== Changelog ==
|
|
|
|
|
|
|
250 |
= 1.5.14 =
|
251 |
- Minor Dashboard update
|
252 |
|
247 |
13. View of FAQ custom fields in the admin
|
248 |
|
249 |
== Changelog ==
|
250 |
+
= 1.5.15 =
|
251 |
+
- Fixed a small Dashboard error that a number of users were experiencing
|
252 |
+
|
253 |
= 1.5.14 =
|
254 |
- Minor Dashboard update
|
255 |
|