Changeset 1285301
- Timestamp:
- 11/13/2015 03:14:32 AM (10 years ago)
- Location:
- easy-faq-with-expanding-text
- Files:
-
- 21 added
- 2 edited
-
tags/3.2.8.2 (added)
-
tags/3.2.8.2/arrows.png (added)
-
tags/3.2.8.2/arrowsWhite.png (added)
-
tags/3.2.8.2/downarrow.png (added)
-
tags/3.2.8.2/downarrowWhite.png (added)
-
tags/3.2.8.2/faq.php (added)
-
tags/3.2.8.2/faq_checkbox.png (added)
-
tags/3.2.8.2/faq_heading.png (added)
-
tags/3.2.8.2/faq_title.png (added)
-
tags/3.2.8.2/faqmaker.js (added)
-
tags/3.2.8.2/faqstyle.css (added)
-
tags/3.2.8.2/minussign.png (added)
-
tags/3.2.8.2/minussignWhite.png (added)
-
tags/3.2.8.2/none.png (added)
-
tags/3.2.8.2/plusminus.png (added)
-
tags/3.2.8.2/plusminusWhite.png (added)
-
tags/3.2.8.2/plussign.png (added)
-
tags/3.2.8.2/plussignWhite.png (added)
-
tags/3.2.8.2/readme.txt (added)
-
tags/3.2.8.2/uparrow.png (added)
-
tags/3.2.8.2/uparrowWhite.png (added)
-
trunk/faq.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-faq-with-expanding-text/trunk/faq.php
r1079427 r1285301 2 2 /* 3 3 Plugin Name: Easy FAQ with Expanding Text 4 Description: Easily create a Frequently Asked Questions page with answers that slide down when the questions are clicked. No need for a shortcode, HTML coding, or javascript tweaking.5 Version: 3.2.8. 14 Description: Easily create a Frequently Asked Questions page with answers that slide down when the questions are clicked...or a non-FAQ page with the same effect. No need for a shortcode, HTML coding, or javascript tweaking. 5 Version: 3.2.8.2 6 6 Author: bgentry 7 7 Author URI: http://bryangentry.us … … 119 119 if ( $foldupOptions == 'default' || $foldupOptions == false ) { 120 120 $faqoptions = get_option('bg_faq_options'); 121 $foldup = $faqoptions['foldup'];121 $foldup = ($faqoptions['foldup']) ? $faqoptions['foldup'] : 'no'; 122 122 } 123 123 else { … … 134 134 function faq_footer() { 135 135 $faqoptions = get_option('bg_faq_options'); 136 $foldup = $faqoptions['foldup'];136 $foldup = ($faqoptions['foldup']) ? $faqoptions['foldup'] : 'no'; 137 137 echo '<script>if ( typeof faqStarted == "undefined" ) { 138 138 faqStarted = true; … … 146 146 if ( $foldupOptions == 'default' || $foldupOptions == false ) { 147 147 $faqoptions = get_option('bg_faq_options'); 148 $foldup = $faqoptions['foldup'];148 $foldup = ($faqoptions['foldup']) ? $faqoptions['foldup'] : 'no'; 149 149 } 150 150 else { … … 332 332 $foldupDefaultChecked = ''; 333 333 } else { 334 $foldup = $faqoptions['foldup'];334 $foldup = ($faqoptions['foldup']) ? $faqoptions['foldup'] : 'no'; 335 335 $foldupYesChecked = ''; 336 336 $foldupNoChecked = ''; … … 410 410 if ( $foldupOptions == 'default' || $foldupOptions == false ) { 411 411 $faqoptions = get_option('bg_faq_options'); 412 $foldup = $faqoptions['foldup'];412 $foldup = ($faqoptions['foldup']) ? $faqoptions['foldup'] : 'no'; 413 413 } 414 414 else { -
easy-faq-with-expanding-text/trunk/readme.txt
r1079427 r1285301 3 3 Donate link: http://bryangentry.us/pay-me 4 4 Tags: faq pages 5 Tested up to: 4. 16 Stable tag: 3.2.8. 15 Tested up to: 4.3.1 6 Stable tag: 3.2.8.2 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 == Description == 13 13 14 Lots of pages online have a dropdown text feature, where clicking a heading reveals next or photos underneath it. This plugin provides the easiest way to create these effects in yourWordPress pages and posts. Anyone who can use the WordPress post editor can use this plugin to create animated FAQ pages, or other pages that have this effect. No need for a shortcode or other coding needed!14 Easily create headings that users can click on to reveal additional text below in WordPress pages and posts. Anyone who can use the WordPress post editor can use this plugin to create animated FAQ pages, or other pages that have this effect. No need for a shortcode or other coding needed! 15 15 16 To create your FAQ page, justclick a checkbox on the post editing screen. In the content of the page, select a heading style for the questions or titles that you want to appear, and the paragraphs, lists, photos, and videos beneath them will be hidden until the heading is clicked. OR you can use the shortcodes [bg_faq_start] and [bg_faq_end] to wrap the section of content that you want to have this effect.16 To create your FAQ page, create a new page or post, click a checkbox on the post editing screen. In the content of the page, select a heading style for the questions or titles that you want to appear, and the paragraphs, lists, photos, and videos beneath them will be hidden until the heading is clicked. OR you can use the shortcodes [bg_faq_start] and [bg_faq_end] to wrap the section of content that you want to have this effect. 17 17 18 18 == Installation == … … 23 23 24 24 == Changelog == 25 26 =3.2.8.2= 27 *Fixed a few more lines causing PHP notices on servers with certain PHP error notice settings. 25 28 26 29 =3.2.8.1=
Note: See TracChangeset
for help on using the changeset viewer.