Testimonials widgets not showing up

I’ve enabled jetpack and the testimonials custom post type. I have the testimonials sections checked and it’s showing on my site. When I navigate to Customize > Widgets, there is no options to add/edit widgets for the testimonial section.

I am using a child theme to make edits, and have edited front-page.php (attached below) to rearrange the order of the sections.

EDIT: Okay, couldn’t upload a php file (for obvious reasons) so here’s the part I’ve changed:


  // Services Section
  if( $sections_order_fourth_section ):
		illdy_sections_order( $sections_order_fourth_section );
	endif;

  // Latest News Section
  if( $sections_order_fifth_section ):
		illdy_sections_order( $sections_order_fifth_section );
	endif;

  // Testimonials Section
	if( $sections_order_third_section ):
		illdy_sections_order( $sections_order_third_section );
	endif;

  // Projects Section
	if( $sections_order_second_section ):
		illdy_sections_order( $sections_order_second_section );
	endif;

	if( $sections_order_sixth_section ):
		illdy_sections_order( $sections_order_sixth_section );
	endif;

	if( $sections_order_seventh_section ):
		illdy_sections_order( $sections_order_seventh_section );
	endif;

	if( $sections_order_eighth_section ):
		illdy_sections_order( $sections_order_eighth_section );
	endif;

  // About Section
  if( $sections_order_first_section ):
		illdy_sections_order( $sections_order_first_section );
	endif;

Hi @grahamlutz,

Make sure that you have testimonials in Dashboard>Testimonials.

Thanks,

Cristian.