Version Description
- Corrected issue in which category and tag styling options were not saving
- Corrected a formatting issue that was affecting certain option screens
Download this release
Release Info
Developer | Rustaurius |
Plugin | Ultimate FAQ |
Version | 1.8.13 |
Comparing to | |
See all releases |
Code changes from version 1.8.12 to 1.8.13
- Main.php +1 -1
- html/OptionsPage.php +538 -537
- readme.txt +20 -12
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: ultimate-faqs
|
10 |
-
Version: 1.8.
|
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: ultimate-faqs
|
10 |
+
Version: 1.8.13
|
11 |
*/
|
12 |
|
13 |
global $ewd_ufaq_message;
|
html/OptionsPage.php
CHANGED
@@ -1039,641 +1039,642 @@
|
|
1039 |
</div> <!-- ewd-ufaq-admin-styling-section -->
|
1040 |
|
1041 |
</div>
|
1042 |
-
</div>
|
1043 |
|
1044 |
-
<div id='Fields' class='ufaq-option-set<?php echo ( $Display_Tab == 'Fields' ? '' : ' ufaq-hidden' ); ?>'>
|
1045 |
-
<h2 id='label-order-options' class='ufaq-options-page-tab-title'>Fields Options (Premium)</h2>
|
1046 |
|
1047 |
-
<br />
|
1048 |
|
1049 |
-
<div class="ewd-ufaq-admin-section-heading"><?php _e('Settings', 'ultimate-faqs'); ?></div>
|
1050 |
|
1051 |
-
<table class="form-table ewd-ufaq-premium-options-table">
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
</tr>
|
1097 |
-
<tr>
|
1098 |
-
<th scope="row">Hide Blank Fields</th>
|
1099 |
-
<td>
|
1100 |
-
<fieldset><legend class="screen-reader-text"><span>Hide Blank Fields</span></legend>
|
1101 |
-
<div class="ewd-ufaq-admin-hide-radios">
|
1102 |
-
<label title='Yes' class='ewd-ufaq-admin-input-container'><input type='radio' name='hide_blank_fields' value='Yes' <?php if($Hide_Blank_Fields == "Yes") {echo "checked='checked'";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span>Yes</span></label><br />
|
1103 |
-
<label title='No' class='ewd-ufaq-admin-input-container'><input type='radio' name='hide_blank_fields' value='No' <?php if($Hide_Blank_Fields == "No") {echo "checked='checked'";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span>No</span></label><br />
|
1104 |
-
</div>
|
1105 |
-
<label class="ewd-ufaq-admin-switch">
|
1106 |
-
<input type="checkbox" class="ewd-ufaq-admin-option-toggle" data-inputname="hide_blank_fields" <?php if($Hide_Blank_Fields == "Yes") {echo "checked='checked'";} ?>>
|
1107 |
-
<span class="ewd-ufaq-admin-switch-slider round"></span>
|
1108 |
-
</label>
|
1109 |
-
<p>Should field labels be hidden if a field hasn't been filled out for a particular FAQ?</p>
|
1110 |
-
</fieldset>
|
1111 |
-
</td>
|
1112 |
-
</tr>
|
1113 |
-
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1114 |
-
<tr class="ewd-ufaq-premium-options-table-overlay">
|
1115 |
-
<th colspan="2">
|
1116 |
-
<div class="ewd-ufaq-unlock-premium">
|
1117 |
-
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1118 |
-
<p>Access this section by by upgrading to premium</p>
|
1119 |
-
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1120 |
-
</div>
|
1121 |
-
</th>
|
1122 |
</tr>
|
1123 |
-
|
1124 |
-
</
|
1125 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1126 |
|
1127 |
|
1128 |
-
<div id='Labelling' class='ufaq-option-set<?php echo ( $Display_Tab == 'Labelling' ? '' : ' ufaq-hidden' ); ?>'>
|
1129 |
-
|
1130 |
|
1131 |
-
|
1132 |
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
</div>
|
1200 |
-
</div>
|
1201 |
-
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1202 |
-
<div class="ewd-ufaq-premium-options-table-overlay">
|
1203 |
-
<div class="ewd-ufaq-unlock-premium">
|
1204 |
-
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1205 |
-
<p>Access this section by by upgrading to premium</p>
|
1206 |
-
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1207 |
</div>
|
1208 |
</div>
|
1209 |
-
|
1210 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1211 |
|
1212 |
-
|
1213 |
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
</div>
|
1257 |
-
</div>
|
1258 |
-
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1259 |
-
<div class="ewd-ufaq-premium-options-table-overlay">
|
1260 |
-
<div class="ewd-ufaq-unlock-premium">
|
1261 |
-
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1262 |
-
<p>Access this section by by upgrading to premium</p>
|
1263 |
-
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1264 |
</div>
|
1265 |
</div>
|
1266 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1267 |
</div>
|
|
|
|
|
1268 |
|
1269 |
-
|
1270 |
-
<div id='Styling' class='ufaq-option-set<?php echo ( $Display_Tab == 'Styling' ? '' : ' ufaq-hidden' ); ?>'>
|
1271 |
-
<h2 id='label-order-options' class='ufaq-options-page-tab-title'>Styling Options (Premium)</h2>
|
1272 |
|
1273 |
-
|
1274 |
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
</fieldset>
|
1299 |
</div>
|
1300 |
</div>
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
|
|
|
|
|
|
|
|
1315 |
</div>
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
|
|
|
|
1319 |
</div>
|
1320 |
</div>
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
</div>
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
</div>
|
1333 |
</div>
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
|
|
|
|
|
|
1338 |
</div>
|
1339 |
</div>
|
1340 |
-
|
1341 |
</div>
|
1342 |
-
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1343 |
-
<div class="ewd-ufaq-premium-options-table-overlay">
|
1344 |
-
<div class="ewd-ufaq-unlock-premium">
|
1345 |
-
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1346 |
-
<p>Access this section by by upgrading to premium</p>
|
1347 |
-
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1348 |
-
</div>
|
1349 |
-
</div>
|
1350 |
-
<?php } ?>
|
1351 |
-
</div>
|
1352 |
|
1353 |
-
|
1354 |
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
|
|
1371 |
</div>
|
1372 |
</div>
|
1373 |
</div>
|
1374 |
</div>
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
</div>
|
1386 |
</div>
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
</div>
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
</div>
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
</div>
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
</div>
|
1411 |
</div>
|
1412 |
</div>
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
</div>
|
1421 |
-
|
1422 |
-
|
1423 |
-
</div>
|
1424 |
|
1425 |
-
|
1426 |
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
|
|
1439 |
</div>
|
1440 |
</div>
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
</div>
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
</div>
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
</div>
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
</div>
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
</div>
|
1471 |
</div>
|
1472 |
</div>
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
</div>
|
1484 |
</div>
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
</div>
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
</div>
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
</div>
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
</div>
|
1509 |
</div>
|
1510 |
</div>
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
</div>
|
1522 |
</div>
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
</div>
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
</div>
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
</div>
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
</div>
|
1547 |
</div>
|
1548 |
</div>
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
</div>
|
1560 |
</div>
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
</div>
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
</div>
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
</div>
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
</div>
|
1585 |
</div>
|
1586 |
</div>
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
</div>
|
1598 |
</div>
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
</div>
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
</div>
|
1611 |
</div>
|
1612 |
</div>
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
</div>
|
1621 |
-
|
1622 |
-
|
1623 |
-
</div>
|
1624 |
|
1625 |
-
|
1626 |
|
1627 |
-
|
1628 |
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
|
|
1644 |
</div>
|
1645 |
</div>
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
</
|
1660 |
-
</
|
1661 |
</div>
|
1662 |
</div>
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
</div>
|
1671 |
-
|
1672 |
-
|
1673 |
-
</div>
|
1674 |
|
1675 |
|
1676 |
|
|
|
|
|
1677 |
</div>
|
1678 |
|
1679 |
<p class="submit"><input type="submit" name="Options_Submit" id="submit" class="button button-primary" value="Save Changes" /></p></form>
|
1039 |
</div> <!-- ewd-ufaq-admin-styling-section -->
|
1040 |
|
1041 |
</div>
|
|
|
1042 |
|
1043 |
+
<div id='Fields' class='ufaq-option-set<?php echo ( $Display_Tab == 'Fields' ? '' : ' ufaq-hidden' ); ?>'>
|
1044 |
+
<h2 id='label-order-options' class='ufaq-options-page-tab-title'>Fields Options (Premium)</h2>
|
1045 |
|
1046 |
+
<br />
|
1047 |
|
1048 |
+
<div class="ewd-ufaq-admin-section-heading"><?php _e('Settings', 'ultimate-faqs'); ?></div>
|
1049 |
|
1050 |
+
<table class="form-table ewd-ufaq-premium-options-table">
|
1051 |
+
<tr>
|
1052 |
+
<th scope="row">FAQ Custom Fields</th>
|
1053 |
+
<td>
|
1054 |
+
<fieldset><legend class="screen-reader-text"><span>FAQ Custom Fields</span></legend>
|
1055 |
+
<table id='ewd-ufaq-custom-fields-table'>
|
1056 |
+
<tr>
|
1057 |
+
<th class="ewd-ufaq-admin-no-info-button"></th>
|
1058 |
+
<th class="ewd-ufaq-admin-no-info-button">Field Name</th>
|
1059 |
+
<th class="ewd-ufaq-admin-no-info-button">Field Type</th>
|
1060 |
+
<th class="ewd-ufaq-admin-no-info-button">Field Values</th>
|
1061 |
+
</tr>
|
1062 |
+
<?php
|
1063 |
+
$Counter = 0;
|
1064 |
+
$Max_ID = 0;
|
1065 |
+
if (!is_array($FAQ_Fields_Array)) {$FAQ_Fields_Array = array();}
|
1066 |
+
foreach ($FAQ_Fields_Array as $FAQ_Field_Item) {
|
1067 |
+
echo "<tr id='ewd-ufaq-custom-field-row-" . $Counter . "'>";
|
1068 |
+
echo "<td><input type='hidden' name='Custom_Field_" . $Counter . "_ID' value='" . $FAQ_Field_Item['FieldID'] . "' /><a class='ewd-ufaq-delete-custom-field' data-fieldid='" . $Counter . "'>Delete</a></td>";
|
1069 |
+
echo "<td><input type='text' name='Custom_Field_" . $Counter . "_Name' value='" . $FAQ_Field_Item['FieldName'] . "'/></td>";
|
1070 |
+
echo "<td><select name='Custom_Field_" . $Counter . "_Type'>"; ?>
|
1071 |
+
<option value='text' <?php if ($FAQ_Field_Item['FieldType'] == "text") {echo "selected='selected'";} ?>>Text</option>
|
1072 |
+
<option value='textarea' <?php if ($FAQ_Field_Item['FieldType'] == "textarea") {echo "selected='selected'";} ?>>Text Area</option>
|
1073 |
+
<option value='select' <?php if ($FAQ_Field_Item['FieldType'] == "select") {echo "selected='selected'";} ?>>Select Box</option>
|
1074 |
+
<option value='radio' <?php if ($FAQ_Field_Item['FieldType'] == "radio") {echo "selected='selected'";} ?>>Radio Buttons</option>
|
1075 |
+
<option value='checkbox' <?php if ($FAQ_Field_Item['FieldType'] == "checkbox") {echo "selected='selected'";} ?>>Checkbox</option>
|
1076 |
+
<option value='file' <?php if ($FAQ_Field_Item['FieldType'] == "file") {echo "selected='selected'";} ?>>File</option>
|
1077 |
+
<option value='link' <?php if ($FAQ_Field_Item['FieldType'] == "link") {echo "selected='selected'";} ?>>Link</option>
|
1078 |
+
<option value='date' <?php if ($FAQ_Field_Item['FieldType'] == "date") {echo "selected='selected'";} ?>>Date</option>
|
1079 |
+
<option value='datetime' <?php if ($FAQ_Field_Item['FieldType'] == "datetime") {echo "selected='selected'";} ?>>Date/Time</option>
|
1080 |
+
<?php echo "</select></td>";
|
1081 |
+
echo "<td><input type='text' name='Custom_Field_" . $Counter . "_Values' value='" . $FAQ_Field_Item['FieldValues'] . "'/></td>";
|
1082 |
+
echo "</tr>";
|
1083 |
+
$Counter++;
|
1084 |
+
$Max_ID = max($Max_ID, $FAQ_Field_Item['FieldID']);
|
1085 |
+
}
|
1086 |
+
$Max_ID++;
|
1087 |
+
echo "<tr><td colspan='4'><a class='ewd-ufaq-add-custom-field' data-nextid='" . $Counter . "' data-maxid='" . $Max_ID . "'>Add</a></td></tr>";
|
1088 |
+
?>
|
1089 |
+
</table>
|
1090 |
+
<p>Should any extra fields be added to the FAQs?<br />
|
1091 |
+
The "Field Values" should be a comma-separated list of values for the select, radio or checkbox field types (no extra spaces after the comma)<br />
|
1092 |
+
For security reasons, file fields cannot be included in the submit FAQ form.</p>
|
1093 |
+
</fieldset>
|
1094 |
+
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1095 |
</tr>
|
1096 |
+
<tr>
|
1097 |
+
<th scope="row">Hide Blank Fields</th>
|
1098 |
+
<td>
|
1099 |
+
<fieldset><legend class="screen-reader-text"><span>Hide Blank Fields</span></legend>
|
1100 |
+
<div class="ewd-ufaq-admin-hide-radios">
|
1101 |
+
<label title='Yes' class='ewd-ufaq-admin-input-container'><input type='radio' name='hide_blank_fields' value='Yes' <?php if($Hide_Blank_Fields == "Yes") {echo "checked='checked'";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span>Yes</span></label><br />
|
1102 |
+
<label title='No' class='ewd-ufaq-admin-input-container'><input type='radio' name='hide_blank_fields' value='No' <?php if($Hide_Blank_Fields == "No") {echo "checked='checked'";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span>No</span></label><br />
|
1103 |
+
</div>
|
1104 |
+
<label class="ewd-ufaq-admin-switch">
|
1105 |
+
<input type="checkbox" class="ewd-ufaq-admin-option-toggle" data-inputname="hide_blank_fields" <?php if($Hide_Blank_Fields == "Yes") {echo "checked='checked'";} ?>>
|
1106 |
+
<span class="ewd-ufaq-admin-switch-slider round"></span>
|
1107 |
+
</label>
|
1108 |
+
<p>Should field labels be hidden if a field hasn't been filled out for a particular FAQ?</p>
|
1109 |
+
</fieldset>
|
1110 |
+
</td>
|
1111 |
+
</tr>
|
1112 |
+
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1113 |
+
<tr class="ewd-ufaq-premium-options-table-overlay">
|
1114 |
+
<th colspan="2">
|
1115 |
+
<div class="ewd-ufaq-unlock-premium">
|
1116 |
+
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1117 |
+
<p>Access this section by by upgrading to premium</p>
|
1118 |
+
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1119 |
+
</div>
|
1120 |
+
</th>
|
1121 |
+
</tr>
|
1122 |
+
<?php } ?>
|
1123 |
+
</table>
|
1124 |
+
</div>
|
1125 |
|
1126 |
|
1127 |
+
<div id='Labelling' class='ufaq-option-set<?php echo ( $Display_Tab == 'Labelling' ? '' : ' ufaq-hidden' ); ?>'>
|
1128 |
+
<h2 id='label-order-options' class='ufaq-options-page-tab-title'>Labelling Options</h2>
|
1129 |
|
1130 |
+
<br />
|
1131 |
|
1132 |
+
<div class="ewd-ufaq-admin-section-heading"><?php _e('FAQ Page and Search', 'ultimate-faqs'); ?></div>
|
1133 |
+
|
1134 |
+
<div class="ewd-ufaq-admin-styling-section">
|
1135 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1136 |
+
<p>Replace the default text on the FAQ page and FAQ search page</p>
|
1137 |
+
<div class="ewd-admin-labelling-section">
|
1138 |
+
<label>
|
1139 |
+
<p><?php _e("Posted", 'ultimate-faqs')?></p>
|
1140 |
+
<input type='text' name='posted_label' value='<?php echo $Posted_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1141 |
+
</label>
|
1142 |
+
<label>
|
1143 |
+
<p><?php _e("By", 'ultimate-faqs')?></p>
|
1144 |
+
<input type='text' name='by_label' value='<?php echo $By_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1145 |
+
</label>
|
1146 |
+
<label>
|
1147 |
+
<p><?php _e("On", 'ultimate-faqs')?></p>
|
1148 |
+
<input type='text' name='on_label' value='<?php echo $On_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1149 |
+
</label>
|
1150 |
+
<label>
|
1151 |
+
<p><?php _e("Categories", 'ultimate-faqs')?></p>
|
1152 |
+
<input type='text' name='category_label' value='<?php echo $Category_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1153 |
+
</label>
|
1154 |
+
<label>
|
1155 |
+
<p><?php _e("Tags", 'ultimate-faqs')?></p>
|
1156 |
+
<input type='text' name='tag_label' value='<?php echo $Tag_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1157 |
+
</label>
|
1158 |
+
<label>
|
1159 |
+
<p><?php _e("Permalink", 'ultimate-faqs')?></p>
|
1160 |
+
<input type='text' name='permalink_label' value='<?php echo $Permalink_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1161 |
+
</label>
|
1162 |
+
<label>
|
1163 |
+
<p><?php _e("Back To Top", 'ultimate-faqs')?></p>
|
1164 |
+
<input type='text' name='back_to_top_label' value='<?php echo $Back_To_Top_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1165 |
+
</label>
|
1166 |
+
<label>
|
1167 |
+
<p><?php _e("WooCommerce Tab Label", 'ultimate-faqs')?></p>
|
1168 |
+
<input type='text' name='woocommerce_tab_label' value='<?php echo $WooCommerce_Tab_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1169 |
+
</label>
|
1170 |
+
<label>
|
1171 |
+
<p><?php _e("Share Label", 'ultimate-faqs')?></p>
|
1172 |
+
<input type='text' name='share_faq_label' value='<?php echo $Share_FAQ_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1173 |
+
</label>
|
1174 |
+
<label>
|
1175 |
+
<p><?php _e("Did you find this FAQ helpful?", 'ultimate-faqs')?></p>
|
1176 |
+
<input type='text' name='find_faq_helpful_label' value='<?php echo $Find_FAQ_Helpful_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1177 |
+
</label>
|
1178 |
+
<label>
|
1179 |
+
<p><?php _e("Enter your question", 'ultimate-faqs')?></p>
|
1180 |
+
<input type='text' name='enter_question_label' value='<?php echo $Enter_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1181 |
+
</label>
|
1182 |
+
<label>
|
1183 |
+
<p><?php _e("Search Placeholder", 'ultimate-faqs')?></p>
|
1184 |
+
<input type='text' name='search_placeholder_label' value='<?php echo $Search_Placeholder_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1185 |
+
</label>
|
1186 |
+
<label>
|
1187 |
+
<p><?php _e("Search Button", 'ultimate-faqs')?></p>
|
1188 |
+
<input type='text' name='search_label' value='<?php echo $Search_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1189 |
+
</label>
|
1190 |
+
<label>
|
1191 |
+
<p><?php _e("Retrieving Results", 'ultimate-faqs')?></p>
|
1192 |
+
<input type='text' name='retrieving_results' value='<?php echo $Retrieving_Results; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1193 |
+
</label>
|
1194 |
+
<label>
|
1195 |
+
<p><?php _e("No results FAQ's contained the term '%s'", 'ultimate-faqs')?></p>
|
1196 |
+
<input type='text' name='no_results_found_text' value='<?php echo $No_Results_Found_Text; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1197 |
+
</label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1198 |
</div>
|
1199 |
</div>
|
1200 |
+
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1201 |
+
<div class="ewd-ufaq-premium-options-table-overlay">
|
1202 |
+
<div class="ewd-ufaq-unlock-premium">
|
1203 |
+
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1204 |
+
<p>Access this section by by upgrading to premium</p>
|
1205 |
+
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1206 |
+
</div>
|
1207 |
+
</div>
|
1208 |
+
<?php } ?>
|
1209 |
+
</div>
|
1210 |
|
1211 |
+
<br />
|
1212 |
|
1213 |
+
<div class="ewd-ufaq-admin-section-heading"><?php _e('FAQ Submit Page', 'ultimate-faqs'); ?></div>
|
1214 |
+
|
1215 |
+
<div class="ewd-ufaq-admin-styling-section">
|
1216 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1217 |
+
<p>Replace the default text on the FAQ submit page</p>
|
1218 |
+
<div class="ewd-admin-labelling-section">
|
1219 |
+
<label>
|
1220 |
+
<p><?php _e("Thank you for submitting an FAQ", 'ultimate-faqs')?></p>
|
1221 |
+
<input type='text' name='thank_you_submit_label' value='<?php echo $Thank_You_Submit_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1222 |
+
</label>
|
1223 |
+
<label>
|
1224 |
+
<p><?php _e("Submit a Question", 'ultimate-faqs')?></p>
|
1225 |
+
<input type='text' name='submit_question_label' value='<?php echo $Submit_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1226 |
+
</label>
|
1227 |
+
<label>
|
1228 |
+
<p><?php _e("Please fill out the form below to submit a question.", 'ultimate-faqs')?></p>
|
1229 |
+
<input type='text' name='please_fill_form_below_label' value='<?php echo $Please_Fill_Form_Below_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1230 |
+
</label>
|
1231 |
+
<label>
|
1232 |
+
<p><?php _e("Send Question", 'ultimate-faqs')?></p>
|
1233 |
+
<input type='text' name='send_question_label' value='<?php echo $Send_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1234 |
+
</label>
|
1235 |
+
<label>
|
1236 |
+
<p><?php _e("Question Title", 'ultimate-faqs')?></p>
|
1237 |
+
<input type='text' name='question_title_label' value='<?php echo $Question_Title_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1238 |
+
</label>
|
1239 |
+
<label>
|
1240 |
+
<p><?php _e("What question is being answered?", 'ultimate-faqs')?></p>
|
1241 |
+
<input type='text' name='what_question_being_answered_label' value='<?php echo $What_Question_Being_Answered_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1242 |
+
</label>
|
1243 |
+
<label>
|
1244 |
+
<p><?php _e("Proposed Answer", 'ultimate-faqs')?></p>
|
1245 |
+
<input type='text' name='proposed_answer_label' value='<?php echo $Proposed_Answer_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1246 |
+
</label>
|
1247 |
+
<label>
|
1248 |
+
<p><?php _e("Question Author", 'ultimate-faqs')?></p>
|
1249 |
+
<input type='text' name='review_author_label' value='<?php echo $Review_Author_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1250 |
+
</label>
|
1251 |
+
<label>
|
1252 |
+
<p><?php _e("What name should be displayed with your question?", 'ultimate-faqs')?></p>
|
1253 |
+
<input type='text' name='what_name_with_review_label' value='<?php echo $What_Name_With_Review_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
|
1254 |
+
</label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1255 |
</div>
|
1256 |
</div>
|
1257 |
+
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1258 |
+
<div class="ewd-ufaq-premium-options-table-overlay">
|
1259 |
+
<div class="ewd-ufaq-unlock-premium">
|
1260 |
+
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1261 |
+
<p>Access this section by by upgrading to premium</p>
|
1262 |
+
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1263 |
+
</div>
|
1264 |
+
</div>
|
1265 |
+
<?php } ?>
|
1266 |
+
</div>
|
1267 |
+
|
1268 |
</div>
|
1269 |
+
<div id='Styling' class='ufaq-option-set<?php echo ( $Display_Tab == 'Styling' ? '' : ' ufaq-hidden' ); ?>'>
|
1270 |
+
<h2 id='label-order-options' class='ufaq-options-page-tab-title'>Styling Options (Premium)</h2>
|
1271 |
|
1272 |
+
<br />
|
|
|
|
|
1273 |
|
1274 |
+
<div class="ewd-ufaq-admin-section-heading"><?php _e('Toggle Symbol', 'ultimate-faqs'); ?></div>
|
1275 |
|
1276 |
+
<div class="ewd-ufaq-admin-styling-section">
|
1277 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1278 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('Choose Font Icon', 'ultimate-faqs'); ?></div>
|
1279 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1280 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1281 |
+
<fieldset class="ewdAdminIconChoice">
|
1282 |
+
<label class='ewd-ufaq-admin-input-container'><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='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>a A</span></label>
|
1283 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='B' <?php if ($Toggle_Symbol == "B") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>b B</span></label>
|
1284 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='C' <?php if ($Toggle_Symbol == "C") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>c C</span></label>
|
1285 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='D' <?php if ($Toggle_Symbol == "D") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>d D</span></label>
|
1286 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='E' <?php if ($Toggle_Symbol == "E") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>e E</span></label>
|
1287 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='F' <?php if ($Toggle_Symbol == "F") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>f F</span></label>
|
1288 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='G' <?php if ($Toggle_Symbol == "G") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>g G</span></label>
|
1289 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='H' <?php if ($Toggle_Symbol == "H") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>h H</span></label>
|
1290 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='I' <?php if ($Toggle_Symbol == "I") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>i I</span></label>
|
1291 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='J' <?php if ($Toggle_Symbol == "J") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>j J</span></label>
|
1292 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='K' <?php if ($Toggle_Symbol == "K") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>k K</span></label>
|
1293 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='L' <?php if ($Toggle_Symbol == "L") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>l L</span></label>
|
1294 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='M' <?php if ($Toggle_Symbol == "M") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>m M</span></label>
|
1295 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='N' <?php if ($Toggle_Symbol == "N") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>n N</span></label>
|
1296 |
+
<label class='ewd-ufaq-admin-input-container'><input type='radio' name='toggle_symbol' value='O' <?php if ($Toggle_Symbol == "O") {echo "checked='checked'";} ?> <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> /><span class='ewd-ufaq-admin-radio-button'></span> <span class='ufaq-toggle-symbol'>o O</span></label>
|
1297 |
+
</fieldset>
|
1298 |
+
</div>
|
|
|
1299 |
</div>
|
1300 |
</div>
|
1301 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1302 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('Styling', 'ultimate-faqs'); ?></div>
|
1303 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1304 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1305 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Colors', 'ultimate-faqs'); ?></div>
|
1306 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1307 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1308 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"><?php _e('Icon Background', 'ultimate-faqs'); ?></div>
|
1309 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_default_bg_color' value='<?php echo $UFAQ_Styling_Default_Bg_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1310 |
+
</div>
|
1311 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1312 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"><?php _e('Icon', 'ultimate-faqs'); ?></div>
|
1313 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_default_font_color' value='<?php echo $UFAQ_Styling_Default_Font_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1314 |
+
</div>
|
1315 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1316 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"><?php _e('Icon Border', 'ultimate-faqs'); ?></div>
|
1317 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_default_border_color' value='<?php echo $UFAQ_Styling_Default_Border_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1318 |
+
</div>
|
1319 |
</div>
|
1320 |
+
</div>
|
1321 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1322 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Icon Font Size', 'ultimate-faqs'); ?></div>
|
1323 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1324 |
+
<input type='text' name='ufaq_styling_toggle_symbol_size' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Toggle_Symbol_Size; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1325 |
</div>
|
1326 |
</div>
|
1327 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1328 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Border Size', 'ultimate-faqs'); ?></div>
|
1329 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1330 |
+
<input type='text' name='ufaq_styling_default_border_size' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Default_Border_Size; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1331 |
+
</div>
|
1332 |
</div>
|
1333 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1334 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Border Radius', 'ultimate-faqs'); ?></div>
|
1335 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1336 |
+
<input type='text' name='ufaq_styling_default_border_radius' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Default_Border_Radius; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1337 |
+
</div>
|
1338 |
</div>
|
1339 |
</div>
|
1340 |
+
</div>
|
1341 |
+
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1342 |
+
<div class="ewd-ufaq-premium-options-table-overlay">
|
1343 |
+
<div class="ewd-ufaq-unlock-premium">
|
1344 |
+
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1345 |
+
<p>Access this section by by upgrading to premium</p>
|
1346 |
+
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1347 |
</div>
|
1348 |
</div>
|
1349 |
+
<?php } ?>
|
1350 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1351 |
|
1352 |
+
<br />
|
1353 |
|
1354 |
+
<div class="ewd-ufaq-admin-section-heading"><?php _e('Themes', 'ultimate-faqs'); ?></div>
|
1355 |
+
|
1356 |
+
<div class="ewd-ufaq-admin-styling-section">
|
1357 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1358 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('Block & Border Block Themes', 'ultimate-faqs'); ?></div>
|
1359 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1360 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1361 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Colors', 'ultimate-faqs'); ?></div>
|
1362 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1363 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1364 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"><?php _e('Background Color', 'ultimate-faqs'); ?></div>
|
1365 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_block_bg_color' value='<?php echo $UFAQ_Styling_Block_Bg_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1366 |
+
</div>
|
1367 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1368 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"><?php _e('Hover Font Color', 'ultimate-faqs'); ?></div>
|
1369 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_block_font_color' value='<?php echo $UFAQ_Styling_Block_Font_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1370 |
+
</div>
|
1371 |
</div>
|
1372 |
</div>
|
1373 |
</div>
|
1374 |
</div>
|
1375 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1376 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('List Theme Anchors', 'ultimate-faqs'); ?></div>
|
1377 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1378 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1379 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Color', 'ultimate-faqs'); ?></div>
|
1380 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1381 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1382 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"></div>
|
1383 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_list_font_color' value='<?php echo $UFAQ_Styling_List_Font_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1384 |
+
</div>
|
1385 |
</div>
|
1386 |
</div>
|
1387 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1388 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Family', 'ultimate-faqs'); ?></div>
|
1389 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1390 |
+
<input type='text' name='ufaq_styling_list_font' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_List_Font; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1391 |
+
</div>
|
1392 |
</div>
|
1393 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1394 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Size', 'ultimate-faqs'); ?></div>
|
1395 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1396 |
+
<input type='text' name='ufaq_styling_list_font_size' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_List_Font_Size; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1397 |
+
</div>
|
1398 |
</div>
|
1399 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1400 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Margin', 'ultimate-faqs'); ?></div>
|
1401 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1402 |
+
<input type='text' name='ufaq_styling_list_margin' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_List_Margin; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1403 |
+
</div>
|
1404 |
</div>
|
1405 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1406 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Padding', 'ultimate-faqs'); ?></div>
|
1407 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1408 |
+
<input type='text' name='ufaq_styling_list_padding' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_List_Padding; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1409 |
+
</div>
|
1410 |
</div>
|
1411 |
</div>
|
1412 |
</div>
|
1413 |
+
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1414 |
+
<div class="ewd-ufaq-premium-options-table-overlay">
|
1415 |
+
<div class="ewd-ufaq-unlock-premium">
|
1416 |
+
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1417 |
+
<p>Access this section by by upgrading to premium</p>
|
1418 |
+
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1419 |
+
</div>
|
1420 |
</div>
|
1421 |
+
<?php } ?>
|
1422 |
+
</div>
|
|
|
1423 |
|
1424 |
+
<br />
|
1425 |
|
1426 |
+
<div class="ewd-ufaq-admin-section-heading"><?php _e('FAQ Elements', 'ultimate-faqs'); ?></div>
|
1427 |
+
|
1428 |
+
<div class="ewd-ufaq-admin-styling-section">
|
1429 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1430 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('FAQ Question', 'ultimate-faqs'); ?></div>
|
1431 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1432 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1433 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Color', 'ultimate-faqs'); ?></div>
|
1434 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1435 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1436 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"></div>
|
1437 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_question_font_color' value='<?php echo $UFAQ_Styling_Question_Font_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1438 |
+
</div>
|
1439 |
</div>
|
1440 |
</div>
|
1441 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1442 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Family', 'ultimate-faqs'); ?></div>
|
1443 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1444 |
+
<input type='text' name='ufaq_styling_question_font' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Question_Font; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1445 |
+
</div>
|
1446 |
</div>
|
1447 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1448 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Size', 'ultimate-faqs'); ?></div>
|
1449 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1450 |
+
<input type='text' name='ufaq_styling_question_font_size' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Question_Font_Size; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1451 |
+
</div>
|
1452 |
</div>
|
1453 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1454 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Margin', 'ultimate-faqs'); ?></div>
|
1455 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1456 |
+
<input type='text' name='ufaq_styling_question_margin' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Question_Margin; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1457 |
+
</div>
|
1458 |
</div>
|
1459 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1460 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Padding', 'ultimate-faqs'); ?></div>
|
1461 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1462 |
+
<input type='text' name='ufaq_styling_question_padding' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Question_Padding; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1463 |
+
</div>
|
1464 |
</div>
|
1465 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1466 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Toggle Symbol Top Margin', 'ultimate-faqs'); ?></div>
|
1467 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1468 |
+
<input type='text' name='ufaq_styling_question_icon_top_margin' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Question_Icon_Top_Margin; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1469 |
+
</div>
|
1470 |
</div>
|
1471 |
</div>
|
1472 |
</div>
|
1473 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1474 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('FAQ Answer', 'ultimate-faqs'); ?></div>
|
1475 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1476 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1477 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Color', 'ultimate-faqs'); ?></div>
|
1478 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1479 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1480 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"></div>
|
1481 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_answer_font_color' value='<?php echo $UFAQ_Styling_Answer_Font_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1482 |
+
</div>
|
1483 |
</div>
|
1484 |
</div>
|
1485 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1486 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Family', 'ultimate-faqs'); ?></div>
|
1487 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1488 |
+
<input type='text' name='ufaq_styling_answer_font' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Answer_Font; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1489 |
+
</div>
|
1490 |
</div>
|
1491 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1492 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Size', 'ultimate-faqs'); ?></div>
|
1493 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1494 |
+
<input type='text' name='ufaq_styling_answer_font_size' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Answer_Font_Size; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1495 |
+
</div>
|
1496 |
</div>
|
1497 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1498 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Margin', 'ultimate-faqs'); ?></div>
|
1499 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1500 |
+
<input type='text' name='ufaq_styling_answer_margin' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Answer_Margin; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1501 |
+
</div>
|
1502 |
</div>
|
1503 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1504 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Padding', 'ultimate-faqs'); ?></div>
|
1505 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1506 |
+
<input type='text' name='ufaq_styling_answer_padding' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Answer_Padding; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1507 |
+
</div>
|
1508 |
</div>
|
1509 |
</div>
|
1510 |
</div>
|
1511 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1512 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('FAQ Category, Tags', 'ultimate-faqs'); ?></div>
|
1513 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1514 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1515 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Color', 'ultimate-faqs'); ?></div>
|
1516 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1517 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1518 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"></div>
|
1519 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_category_font_color' value='<?php echo $UFAQ_Styling_Category_Font_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1520 |
+
</div>
|
1521 |
</div>
|
1522 |
</div>
|
1523 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1524 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Family', 'ultimate-faqs'); ?></div>
|
1525 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1526 |
+
<input type='text' name='ufaq_styling_category_font' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Category_Font; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1527 |
+
</div>
|
1528 |
</div>
|
1529 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1530 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Size', 'ultimate-faqs'); ?></div>
|
1531 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1532 |
+
<input type='text' name='ufaq_styling_category_font_size' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Category_Font_Size; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1533 |
+
</div>
|
1534 |
</div>
|
1535 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1536 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Margin', 'ultimate-faqs'); ?></div>
|
1537 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1538 |
+
<input type='text' name='ufaq_styling_category_margin' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Category_Margin; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1539 |
+
</div>
|
1540 |
</div>
|
1541 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1542 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Padding', 'ultimate-faqs'); ?></div>
|
1543 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1544 |
+
<input type='text' name='ufaq_styling_category_padding' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Category_Padding; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1545 |
+
</div>
|
1546 |
</div>
|
1547 |
</div>
|
1548 |
</div>
|
1549 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1550 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('FAQ Post Date', 'ultimate-faqs'); ?></div>
|
1551 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1552 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1553 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Color', 'ultimate-faqs'); ?></div>
|
1554 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1555 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1556 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"></div>
|
1557 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_postdate_font_color' value='<?php echo $UFAQ_Styling_Postdate_Font_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1558 |
+
</div>
|
1559 |
</div>
|
1560 |
</div>
|
1561 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1562 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Family', 'ultimate-faqs'); ?></div>
|
1563 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1564 |
+
<input type='text' name='ufaq_styling_postdate_font' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Postdate_Font; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1565 |
+
</div>
|
1566 |
</div>
|
1567 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1568 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Size', 'ultimate-faqs'); ?></div>
|
1569 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1570 |
+
<input type='text' name='ufaq_styling_postdate_font_size' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Postdate_Font_Size; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1571 |
+
</div>
|
1572 |
</div>
|
1573 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1574 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Margin', 'ultimate-faqs'); ?></div>
|
1575 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1576 |
+
<input type='text' name='ufaq_styling_postdate_margin' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Postdate_Margin; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1577 |
+
</div>
|
1578 |
</div>
|
1579 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1580 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Padding', 'ultimate-faqs'); ?></div>
|
1581 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1582 |
+
<input type='text' name='ufaq_styling_postdate_padding' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Postdate_Padding; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1583 |
+
</div>
|
1584 |
</div>
|
1585 |
</div>
|
1586 |
</div>
|
1587 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1588 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('Category Headings<br /><span class="notBold">(when "Group FAQs by Category" is enabled)</span>', 'ultimate-faqs'); ?></div>
|
1589 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1590 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1591 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Color', 'ultimate-faqs'); ?></div>
|
1592 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1593 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker">
|
1594 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-color-picker-label"></div>
|
1595 |
+
<input type='text' class='ewd-ufaq-spectrum' name='ufaq_styling_category_heading_font_color' value='<?php echo $UFAQ_Styling_Category_Heading_Font_Color; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1596 |
+
</div>
|
1597 |
</div>
|
1598 |
</div>
|
1599 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1600 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Family', 'ultimate-faqs'); ?></div>
|
1601 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1602 |
+
<input type='text' name='ufaq_styling_category_heading_font' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Category_Heading_Font; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1603 |
+
</div>
|
1604 |
</div>
|
1605 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1606 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-label"><?php _e('Font Size', 'ultimate-faqs'); ?></div>
|
1607 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-right">
|
1608 |
+
<input type='text' name='ufaq_styling_category_heading_font_size' class='ewd-ufaq-admin-font-size' value='<?php echo $UFAQ_Styling_Category_Heading_Font_Size; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
|
1609 |
+
</div>
|
1610 |
</div>
|
1611 |
</div>
|
1612 |
</div>
|
1613 |
+
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1614 |
+
<div class="ewd-ufaq-premium-options-table-overlay">
|
1615 |
+
<div class="ewd-ufaq-unlock-premium">
|
1616 |
+
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1617 |
+
<p>Access this section by by upgrading to premium</p>
|
1618 |
+
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1619 |
+
</div>
|
1620 |
</div>
|
1621 |
+
<?php } ?>
|
1622 |
+
</div>
|
|
|
1623 |
|
1624 |
+
<br />
|
1625 |
|
1626 |
+
<div class="ewd-ufaq-admin-section-heading"><?php _e('FAQ Heading Types', 'ultimate-faqs'); ?></div>
|
1627 |
|
1628 |
+
<div class="ewd-ufaq-admin-styling-section <?php echo $UFAQ_Full_Version; ?>">
|
1629 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1630 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('Category Heading Type', 'ultimate-faqs'); ?></div>
|
1631 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1632 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1633 |
+
<label>
|
1634 |
+
<select name='ufaq_styling_category_heading_type' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> >
|
1635 |
+
<option value='h1' <?php if ($UFAQ_Styling_Category_Heading_Type == 'h1') {echo "selected='selected'";} ?>>H1</option>
|
1636 |
+
<option value='h2' <?php if ($UFAQ_Styling_Category_Heading_Type == 'h2') {echo "selected='selected'";} ?>>H2</option>
|
1637 |
+
<option value='h3' <?php if ($UFAQ_Styling_Category_Heading_Type == 'h3') {echo "selected='selected'";} ?>>H3</option>
|
1638 |
+
<option value='h4' <?php if ($UFAQ_Styling_Category_Heading_Type == 'h4') {echo "selected='selected'";} ?>>H4</option>
|
1639 |
+
<option value='h5' <?php if ($UFAQ_Styling_Category_Heading_Type == 'h5') {echo "selected='selected'";} ?>>H5</option>
|
1640 |
+
<option value='h6' <?php if ($UFAQ_Styling_Category_Heading_Type == 'h6') {echo "selected='selected'";} ?>>H6</option>
|
1641 |
+
</select>
|
1642 |
+
</label>
|
1643 |
+
</div>
|
1644 |
</div>
|
1645 |
</div>
|
1646 |
+
<div class="ewd-ufaq-admin-styling-subsection">
|
1647 |
+
<div class="ewd-ufaq-admin-styling-subsection-label"><?php _e('FAQ Heading Type', 'ultimate-faqs'); ?></div>
|
1648 |
+
<div class="ewd-ufaq-admin-styling-subsection-content">
|
1649 |
+
<div class="ewd-ufaq-admin-styling-subsection-content-each">
|
1650 |
+
<label>
|
1651 |
+
<select name='ufaq_styling_faq_heading_type' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> >
|
1652 |
+
<option value='h1' <?php if ($UFAQ_Styling_FAQ_Heading_Type == 'h1') {echo "selected='selected'";} ?>>H1</option>
|
1653 |
+
<option value='h2' <?php if ($UFAQ_Styling_FAQ_Heading_Type == 'h2') {echo "selected='selected'";} ?>>H2</option>
|
1654 |
+
<option value='h3' <?php if ($UFAQ_Styling_FAQ_Heading_Type == 'h3') {echo "selected='selected'";} ?>>H3</option>
|
1655 |
+
<option value='h4' <?php if ($UFAQ_Styling_FAQ_Heading_Type == 'h4') {echo "selected='selected'";} ?>>H4</option>
|
1656 |
+
<option value='h5' <?php if ($UFAQ_Styling_FAQ_Heading_Type == 'h5') {echo "selected='selected'";} ?>>H5</option>
|
1657 |
+
<option value='h6' <?php if ($UFAQ_Styling_FAQ_Heading_Type == 'h6') {echo "selected='selected'";} ?>>H6</option>
|
1658 |
+
</select>
|
1659 |
+
</label>
|
1660 |
+
</div>
|
1661 |
</div>
|
1662 |
</div>
|
1663 |
+
<?php if ($UFAQ_Full_Version != "Yes") { ?>
|
1664 |
+
<div class="ewd-ufaq-premium-options-table-overlay">
|
1665 |
+
<div class="ewd-ufaq-unlock-premium">
|
1666 |
+
<img src="<?php echo plugins_url( '../images/options-asset-lock.png', __FILE__ ); ?>" alt="Upgrade to Ultimate FAQ Premium">
|
1667 |
+
<p>Access this section by by upgrading to premium</p>
|
1668 |
+
<a href="https://www.etoilewebdesign.com/license-payment/?Selected=UFAQ&Quantity=1" class="ewd-ufaq-dashboard-get-premium-widget-button" target="_blank">UPGRADE NOW</a>
|
1669 |
+
</div>
|
1670 |
</div>
|
1671 |
+
<?php } ?>
|
1672 |
+
</div>
|
|
|
1673 |
|
1674 |
|
1675 |
|
1676 |
+
</div>
|
1677 |
+
|
1678 |
</div>
|
1679 |
|
1680 |
<p class="submit"><input type="submit" name="Options_Submit" id="submit" class="button button-primary" value="Save Changes" /></p></form>
|
readme.txt
CHANGED
@@ -10,18 +10,19 @@ FAQ plugin that lets you easily create, order and publicize FAQs using shortcode
|
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
FAQ plugin that lets you create, organize and publicize your FAQs (frequently asked questions) in no time through your Wordpress admin panel. Select from multiple FAQ layouts and styles.
|
14 |
|
15 |
[FAQ Demo](https://www.etoilewebdesign.com/ultimate-faq-demo/)
|
16 |
|
17 |
<strong>Tested with WordPress 5.0!</strong>
|
18 |
|
19 |
-
<strong>New Gutenberg blocks included for displaying FAQs as well as for the search and submit form!</strong>
|
20 |
|
21 |
= FAQ Key Features =
|
22 |
* Unlimited FAQs, with unlimited tag and category support
|
23 |
* Create FAQ categories
|
24 |
* Create FAQ posts and assign categories to them
|
|
|
25 |
* An AJAX FAQ search form
|
26 |
* Export all FAQs to a PDF to create a user manual
|
27 |
* Insert custom CSS to style your FAQ posts
|
@@ -40,11 +41,11 @@ You can use either the toggle and/or accordion responsive FAQ style, to display
|
|
40 |
|
41 |
Features include frequently asked question statistics that show how many times FAQs have been viewed, styling options, FAQ tags and categories, display and ordering options, among many other options. Includes an FAQ shortcode helper, that lets you create shortcodes with FAQ attributes without having to manually enter the shortcode.
|
42 |
|
43 |
-
Ultimate FAQ isn't just for frequently asked questions.
|
44 |
|
45 |
= FAQ for WooCommerce =
|
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 questions about the products they're browsing. It's the most comprehensive WooCommerce FAQs solution!
|
48 |
|
49 |
For more information about WooCommerce FAQs integration, please see the following video:
|
50 |
|
@@ -61,14 +62,15 @@ With the smart [submit-question] shortcode (premium), you can let your customers
|
|
61 |
* Microdata question schema, to help with SEO
|
62 |
* Responsive FAQ design that looks great on all screen sizes
|
63 |
* Group FAQs by category for easy navigation
|
|
|
64 |
|
65 |
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.
|
66 |
|
67 |
-
Ultimate FAQ uses the WordPress custom post type functionality to create an FAQ post type, allowing for smart and easy integration.
|
68 |
|
69 |
-
Ultimate FAQ can do more than just FAQs. If you have a help desk or knowledge base and need to pass on information to your visitors and/or users, the question/answer formatting is perfect. With
|
70 |
|
71 |
-
Ultimate FAQ has a responsive design that makes your FAQs look good on all screen sizes and all devices. No more worrying about what your mobile FAQs might look like. All options and styling will be applied accross all devices, so you can focus on your content.
|
72 |
|
73 |
= Premium FAQ features include =
|
74 |
|
@@ -86,6 +88,8 @@ Ultimate FAQ has a responsive design that makes your FAQs look good on all scree
|
|
86 |
* Advanced FAQ styling options
|
87 |
* Drag and drop precise re-ordering of FAQs
|
88 |
* Change the FAQ permalink slug base
|
|
|
|
|
89 |
|
90 |
** 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! **
|
91 |
|
@@ -274,11 +278,15 @@ Video 3 - FAQs Ordering
|
|
274 |
|
275 |
|
276 |
== Changelog ==
|
277 |
-
= 1.8.
|
278 |
-
-
|
279 |
-
-
|
280 |
-
|
281 |
-
|
|
|
|
|
|
|
|
|
282 |
= 1.8.11 =
|
283 |
- Corrected issue with Gutenberg blocks not displaying in new WordPress 5.0
|
284 |
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
FAQ plugin that lets you create, organize and publicize your FAQs (frequently asked questions) in no time through your Wordpress admin panel. Select from multiple responsive FAQ layouts and styles. Modern accordion style layout that fits into any site.
|
14 |
|
15 |
[FAQ Demo](https://www.etoilewebdesign.com/ultimate-faq-demo/)
|
16 |
|
17 |
<strong>Tested with WordPress 5.0!</strong>
|
18 |
|
19 |
+
<strong>New Gutenberg blocks included for displaying FAQs as well as for the search and submit FAQ form!</strong>
|
20 |
|
21 |
= FAQ Key Features =
|
22 |
* Unlimited FAQs, with unlimited tag and category support
|
23 |
* Create FAQ categories
|
24 |
* Create FAQ posts and assign categories to them
|
25 |
+
* Accordion FAQ layout that will fit any site
|
26 |
* An AJAX FAQ search form
|
27 |
* Export all FAQs to a PDF to create a user manual
|
28 |
* Insert custom CSS to style your FAQ posts
|
41 |
|
42 |
Features include frequently asked question statistics that show how many times FAQs have been viewed, styling options, FAQ tags and categories, display and ordering options, among many other options. Includes an FAQ shortcode helper, that lets you create shortcodes with FAQ attributes without having to manually enter the shortcode.
|
43 |
|
44 |
+
Ultimate FAQ isn't just for frequently asked questions. With its responsive accordion layout, that allows you to toggle and collapse content, it also works great for any content similar to an FAQ and that needs to be hidden until it is clicked, like job postings, recipes, etc.!
|
45 |
|
46 |
= FAQ for WooCommerce =
|
47 |
|
48 |
+
Using WooCommerce to sell your products? Easily add an FAQ tab to each product page, so your customers can see answers to common questions about the products they're browsing. With its responsive accordion layout, the new WooCommerce FAQ tab will fit seamlessly into any shop. It's the most comprehensive WooCommerce FAQs solution!
|
49 |
|
50 |
For more information about WooCommerce FAQs integration, please see the following video:
|
51 |
|
62 |
* Microdata question schema, to help with SEO
|
63 |
* Responsive FAQ design that looks great on all screen sizes
|
64 |
* Group FAQs by category for easy navigation
|
65 |
+
* Gutenberg FAQ block with options to specify categories and number of FAQs
|
66 |
|
67 |
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.
|
68 |
|
69 |
+
Ultimate FAQ uses the WordPress custom post type functionality to create an FAQ post type, allowing for smart and easy integration. No need to deal with a complicated FAQ builder. By utilizing a custom post and the new Gutenberg block functionality, you have the best possible FAQ builder.
|
70 |
|
71 |
+
Ultimate FAQ can do more than just FAQs. If you have a help desk or knowledge base and need to pass on information to your visitors and/or users, the question/answer formatting is perfect. With its accordion layout and various options related to toggling, as well as the custom fields functionality, you can easily create an in-depth knowledge base and help desk.
|
72 |
|
73 |
+
Ultimate FAQ has a responsive design that makes your FAQs look good on all screen sizes and all devices. No more worrying about what your mobile FAQs or accordion might look like. All options and styling will be applied accross all devices, so you can focus on your content.
|
74 |
|
75 |
= Premium FAQ features include =
|
76 |
|
88 |
* Advanced FAQ styling options
|
89 |
* Drag and drop precise re-ordering of FAQs
|
90 |
* Change the FAQ permalink slug base
|
91 |
+
* Gutenberg FAQ search block
|
92 |
+
* Gutenberg FAQ block for including a submit question form
|
93 |
|
94 |
** 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! **
|
95 |
|
278 |
|
279 |
|
280 |
== Changelog ==
|
281 |
+
= 1.8.13 =
|
282 |
+
- Corrected issue in which category and tag styling options were not saving
|
283 |
+
- Corrected a formatting issue that was affecting certain option screens
|
284 |
+
|
285 |
+
= 1.8.12 =
|
286 |
+
- Added a skip button to the tutorial that shows when the plugin is first activated
|
287 |
+
- Added in a few missing images in the plugin admin area
|
288 |
+
- Corrected issue that was causing the review request to pop back up even after a review had been left or feedback sent.
|
289 |
+
|
290 |
= 1.8.11 =
|
291 |
- Corrected issue with Gutenberg blocks not displaying in new WordPress 5.0
|
292 |
|