@stevphel:
1. Can these elements be renamed? (Not just changing the titles, but actually renaming the elements.)
-> You mean to rename the title in the customize option? If so, you’ll need to customize the theme further. I recommend you to hire a customizer.
2. How can these elements be reordered on the homepage? For example, move the “Courses” element below the “Our Professors” element?
-> This can be done using child theme and customize it there. You can find more details on creating a child theme HERE. Then add the following code in your child theme’s functions.php
file.
function clean_education_courses_display_position() {
// Getting data from Theme Options
$options = clean_education_get_theme_options();
if ( $options['courses_position'] ) {
add_action( 'clean_education_after_content', 'clean_education_courses_display', 85 );
}
else {
add_action( 'clean_education_before_content', 'clean_education_courses_display', 75 );
}
}
3. How can you make an element show up on another page? For instance, if we have the courses element on the homepage, and then also want it on a subpage for courses, how is this possible without putting it on every single page?
-> For this, you can simply enable the elements on the whole site and then hide it from the page where unnecessary with Custom CSS. If you need help on this, I can help you with this. Please post in your site url.
Regards,
Mahesh