Genesis Simple Faq

An accessible, performant WordPress plugin that adds FAQ management and rendering to your Genesis child theme.
Alternatives To Genesis Simple Faq
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Genesis Simple Faq9
3 years ago10PHP
An accessible, performant WordPress plugin that adds FAQ management and rendering to your Genesis child theme.
Wp Typeit6
a month agoPHP
Easily add typewriter effects to your WordPress site with TypeIt, the most versatile animated typing utility on the planet.
Vrodos6
a day ago21apache-2.0JavaScript
WordPress plugin that allows to visualize 3D models
Spantext4
6 years agoJavaScript
JavaScript Transforming Text
Polished Content3
2 years agootherJavaScript
WordPress Gutenberg Block Animation Builder w/ Intersection Observer
Ocwp Tooltip Animations2
6 years agoJavaScript
A WordPress plugin to incorporate Tooltips Animations from codrops.com into a WordPress website
Alternatives To Genesis Simple Faq
Select To Compare


Alternative Project Comparisons
Readme

Genesis Simple FAQ

A simple plugin to handle FAQ layout and interaction with a shortcode.

DEPRECATION NOTICE

This plugin is now deprecated and will no longer receive feature updates.

Alternatives:

Usage

Adding a FAQ is easy and relies on custom post types to organize and format your FAQs. To add an FAQ, do the following:

  1. Go to Genesis Simple FAQ > All FAQs.
  2. Enter a question in the Title box (required).
  3. Enter an answer into the Content Editor (required).
  4. Set a category, if applicable (optional).
  5. Click publish.

To find the shortcode for that specific FAQ:

  1. Go to Genesis Simple FAQ > All FAQs.
  2. The shortcode will be displayed in the table for each FAQ.

When using the shortcode to display your FAQs, you can either display all FAQs by adding the shortcode without any parameters:

[gs_faq]

Or you can customize the display of FAQs using the following parameters:

  • id: The FAQ ID, either singular or a comma-separated list.
  • cat: The FAQ category ID, either singular or a comma-separated list.
  • limit: The number of FAQs that should be displayed.

For example, FAQs can be displayed using one or more FAQ post type ID:

[gs_faq id="12, 24"]

Or by one or more category ID:

[gs_faq cat="10, 11"]

You can also specify how many FAQs will be displayed. For example:

[gs_faq cat="10, 11" limit="10"]

By default, the limit is set to the number of posts you've set to display in Settings > Reading. Enter -1 to display an infinite number of FAQs.

NOTE: shortcodes should not be entered on consecutive lines, like so:

[gs_faq id="X"]
[gs_faq id="X"]

Instead, shortcodes should be separated by at least one blank line, like so:

[gs_faq id="X"]

[gs_faq id="X"]

You can also show FAQs by using the built in widget. Just go to the Appearance > Widgets screen and drag the Genesis Simple FAQ widget to the widget area where you would like it to display. Then, enter a title and select a category to display FAQs from, and click save.

Filters

Currently, there are four filters:

  • One to toggle JS animation on or off.
  • Two to control critical CSS output.
  • One to control the default FAQ markup.

JS Animation (jQuery Only)

By default, animation is set to true. This will add a slide animation to showing/hiding the FAQ. To remove JS animation and rely on classes to do your state-changing, add the following to your functions.php file:

add_filter( 'gs_faq_js_animation', '__return_false' );

Critical CSS

You can opt-out of critical CSS by using the following filter:

add_filter( 'gs_faq_print_styles', '__return_false' );

You can modify the CSS output using the following filter (styles are minified on the front-end):

add_filter( 'gs_faq_critical_styles', 'your_custom_function' );
function your_custom_function( $styles ) {

	$styles =
		'.gs-faq {
			padding: 5px 0;
		}

		.gs-faq__question {
			display: none;
			margin-top: 10px;
			text-align: left;
			white-space: normal;
			width: 100%;
		}

		.js .gs-faq__question {
			display: block;
		}

		.gs-faq__question:first-of-type {
			margin-top: 0;
		}

		.js .gs-faq__answer {
			display: none;
			padding: 5px;
		}

		.gs-faq__answer p:last-of-type {
			margin-bottom: 0;
		}

		.js .gs-faq__answer__heading {
			display: none;
		}

		.gs-faq__answer.no-animation.gs-faq--expanded {
			display: block;
		}';

	return $styles;

}

Default Markup

The following filter accepts 3 parameters:

  • $template: Full string of HTML to output.
  • $question: The title of the FAQ, usually a question.
  • $answer: The content of the FAQ, usually the answer.
add_filter( 'gs_faq_template', 'your_custom_function', 10, 3 );
function your_custom_function( $template, $question, $answer ) {

	$template = sprintf(
		'The question: %s, and the answer: %s.',
		$question,
		$answer
	);

	return $template;

}
Popular Wordpress Plugin Projects
Popular Animation Projects
Popular Libraries Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Php
Animation
Wordpress Plugin
Shortcode