Frequently asked Questions

My FAQ

Frequently asked Questions
This is a very, but really very simple Frequently asked Questions WordPress plugin. It is an ideal solution if you need frequent questions on the site.

Setup

The operation of the plugin on an administrative interface, „Extensions” „Installed Extensions”, „Frequently Questions” by clicking on the „Settings” link or clicking the „Settings” menu „FAQ Settings”.
The page that appears is displayed on the top of the page that allows you to copy the …

How to use

Create and modify questions
Everything is exactly as in general for an entry. All I have is not the ” Posts” but ” My FAQ” under the menu item you can find the usual items.
Create and modify categories
as the former. Within this, „Question categories” can find the usual …

Frequent questions and sample

  •  This is an empty sample category

    You can disable the display of the empty category if you turn on the "Hide Blank Categories" switch when setting the plugin.
    • There are no questions that can be displayed.
  •  It is also a sample category

    • One question - within category

      This is a response within a category.

  • This is a sample question

    This is a sample response.

  • I don't want to use icons. How do I turn off?

    Simply let the icons settle in the plugin settings.

  • I want to display anything else in the categories icons.

    By overwriting the my_faq_get_category_icon filter, you can do this.

    In the functions.php file, place the following code :

    // Clear the original filter
    remove_filter('my_faq_get_category_icon', 'my_faq_583_get_category_icon');
    
    function my_custom_get_category_icon($icon_group, $icon) {
        
    	// $icon_group: Icon group specified for setting plugin
    	// $icon: The category icon specified for setting the plugin
    	
        $html = '';
    	// Here you have programmed what you want! 
     
    	return $html;
    
    }
    // Add the new filter
    add_filter( 'my_faq_get_category_icon', 'my_custom_get_category_icon', 11, 2 );
  • I would like to show anything else to the questions' icons.

    By overwriting the my_faq_get_query_icon filter, you can do this.

    In the functions.php file, place the following code :

    // Clear the original filter
    remove_filter('my_faq_get_query_icon', 'my_faq_583_get_query_icon');
    
    function my_custom_get_query_icon($icon_group, $icon) {
        
    	// $icon_group: Icon group specified for setting plugin
    	// $icon: The category icon specified for setting the plugin
    	
        $html = '';
    	// Here you have programmed what you want! 
     
    	return $html;
    
    }
    // Add the new filter
    add_filter( 'my_faq_get_query_icon', 'my_custom_get_query_icon', 11, 2 );

Frequent questions are displayed on My FAQ plugin.

I will ask you a new question

New question

You can also ask your question by filling out and submitting the form below.
*
I can search for you by this name.
If you provide your email address, I will send the answer directly to you
In many cases, it helps to be able to view the page related to the question. That way I can answer more accurately.
Thank you for your trust!
You can read our privacy policy by click here.
Adatok feldolgozása folyamatban...

The form displays the Form to PDF plugin.