Viewing 4 replies - 1 through 4 (of 4 total)
  • I would also like to know how to rearrange home page sections.

    Currently my order is as follows:

    1. Magazine
    2. About us
    3. Get in touch with us
    4. Latest News

    I would like 4 to go to 2 and 2 to 3 and 3 to 4.

    Any assistance would be beneficial.

    I also have this question….a reply from the author would be good, as it’d make the theme I paid for more useable if this stuff was customisable.

    The answer is yes, but you must do so manually. Assuming you are using a child theme, edit index.php.

    Example:

    if ($modality_theme_options['getstarted_section_on'] == '1') {
    get_template_part( 'getstarted', 'section' );
    }
    
    if ($modality_theme_options['features_section_on'] == '1') {
    get_template_part( 'features', 'section' );
    }
    
    if ($modality_theme_options['cta_section_on'] == '1') {
    get_template_part( 'cta', 'section' );
    }
    
    if ($modality_theme_options['content_boxes_section_on'] == '1') {
    get_template_part( 'contentboxes', 'section' );
    }

    Just grab what section you want, for example:

    if ($modality_theme_options['cta_section_on'] == '1'){
    get_template_part( 'cta', 'section' );
    }

    copy, cut, and relocate it.

    Thread Starter llgchristy

    (@llgchristy)

    Thank you so much! It worked ?? Any idea on how to get videos to play right from the home page instead of having to actually click on and enter the that post to watch it? (Meaning no featured image, just the video that can be played.)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can I chang the order of the home page sections?’ is closed to new replies.