Q. As I have a business site, Do I need to purchase a Business license or Personal license is sufficient?
Ans: If you have a business site and want to use the plugin in your single business site, you don’t need to purchase the Business package/license. A Personal license is sufficient for you. You can just purchase a Personal package/license as you have a single website, whether it’s a business or personal site.
Q. How can the Editor Role users access the plugin?
Ans: To make the plugin visible or accessible to the editor role users, please add the following code to the functions.php file of your current theme. Have a look at the screenshot.
// Plugin access to editors function ea_show_to_editor() { return 'edit_others_posts'; } add_filter( 'sp_easy_accordion_ui_permission', 'ea_show_to_editor' );
Q. How to change the “End of the Accordion items” text
Ans: If you don’t like the default “End of the Accordion items” text when there are no accordions available or found, you can change the text as you want by replacing the default text with yours. You can do this with the custom code below. If you check the code, you will see there is a filter hook available (sp_eap_end_accordion_text) in the plugin by which you can easily do the modification.
function sp_eap_not_found_text(){ return __( 'No more items to show', 'easy-accordion-pro' ); } add_filter( 'sp_eap_end_accordion_text', 'sp_eap_not_found_text' );
Q. How To Activate the License Key?
Ans: This video will show you how to activate the license key of Easy Accordion Pro.
Q. How To Create an Accordion from Posts & Taxonomy?
Ans: This video will show you how to Create an Accordion from Posts & Taxonomy.
Q. How To Configure Accordion Layout (Vertical & Horizontal)?
Ans: This video will show you how to Configure Accordion Layout (Vertical & Horizontal).
Q. How To Customize Accordion Themes?
Ans: This video will show you how to Customize Accordion Themes.
Q. How To Configure Activator Event and Accordion Mode on Page Load?
Ans: This video will show you how to Configure Activator Event and Accordion Mode on Page Load.
Q. How To Configure Fixed Content Height for Accordion?
Ans: This video will show you how to Configure Fixed Content Height for Accordion.
Q. How To Configure Expand/Collapse All Button & Accordion FAQ Search?
Ans: This video will show you how to Configure Expand/Collapse All Button & Accordion FAQ Search.
Q. How To Configure Accordion Expand & Collapse Icon?
Ans: This video will show you how to Configure Accordion Expand & Collapse Icon.
Q. How To Configure Accordion Item Title & Description?
Ans: This video will show you how to Configure Accordion Item Title & Description.
Q. How To Configure Accordion Animation?
Ans: This video will show you how to Configure Accordion Animation.
Q. How To Configure Ajax Pagination for Accordion Items?
Ans: This video will show you how to Configure Ajax Pagination for Accordion Items.
Q. How To Customize Everything Easily (Colors & Typography)?
Ans: This video will show you how to Customize Everything Easily (Colors & Typography).
Q. How To Add WooCommerce Product FAQ Tab on Product Page?
Ans: This video will show you how to add the WooCommerce Product FAQ Tab to the Product Page.
Q. How To Configure Schema Markup (FAQs on Google Search)?
Ans: This video will show you how to Configure Schema Markup (FAQs on Google Search).
Q. How To Create a Nested/Multi-Level Accordion?
Ans: This video will show you how to Create a Nested/Multi-Level Accordion.
Q. How To Export and Import Accordion groups?
Ans: This video will show you how to Export and Import Accordion groups.