Easy Accordion Pro

  1. Home
  2. Docs
  3. Easy Accordion Pro
  4. FAQs

FAQs

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 editor role users
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 insert the php do shortcode (template include)?

Ans: To use a shortcode inside a page template, you need to know which page template file you want to insert the shortcode into. This could be a custom template file that you’ve created or one of the default page templates that comes with your WordPress theme. Once you have located the page template file, open it in a text editor such as Notepad. To insert the do shortcode, simply copy and paste the PHP function

<?php echo do_shortcode('[sp_easyaccordion id="x"]'); ?>

into the appropriate place in your template file. Save the page template file. Go to the front end and refresh the page to see the changes.

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.

Articles