1. Home
  2. FAQs
  3. How do I change the “End of the Accordion items” text?

How do I change the “End of the Accordion items” text?

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 make 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’ );

Replace “No more items to show” with your preferred text.

Updated on March 3, 2026