Perfect! That fixed everything. Thank you
I forgot to mention that I also had a bunch icons for the plugin that weren’t displaying. If anyone happens to have the same problem and finds this post, they are the WordPress “dashicons” that are used in the back end. To display them in the front end, you have to add the following to the child theme functions:
COPY CODE
add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' );
function load_dashicons_front_end() {
wp_enqueue_style( 'dashicons' );
}