Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #120047
    JRegunathan
    Participant

    I would like to change the order that the sections appear on the featured page of the Clean Education Pro theme. With other themes, the featured page sections are defined by the pages panel and I am able to just install a plugin to change the order of the pages, and therefore change the order that each section appears on the home/featured page. However, with Clean Education, these sections are set up in theme options so I am unable to resolve this with a plugin. Is there a way to do this with this theme?

    #120060
    tikaram
    Keymaster

    @jregunathan : All the available theme options are accessible from Appearance => Customize. You can access the available theme options from the customizer to customize your site. If the available theme options is not adequate then you may create a child theme and customize your site. Please go through this link to know more about available features in clean education theme.

    Regards,
    Tikaram

    #120104
    JRegunathan
    Participant

    Thanks. That doesn’t really answer my question. I am aware that I can adjust each theme option from the custoize panel, but what I want to know is how to change the order of appearance that each section on the feature/home page appears. I.e., is there a way to put the logo slider at the bottom of the screen?

    Thanks!

    #120124
    tikaram
    Keymaster

    @jregunathan :This Option is not available from theme options. If you have knowledge of child theme you can create a child theme and customize the site as required. You can alter the order of sections using child theme. Let me know if you need further assistance.

    Regards,
    Tikaram

    #120167
    JRegunathan
    Participant

    Thank you. I know how to set up a child theme, but can you tell me which pages I need to edit to adjust the order. I looked through the includes folder and couldn’t find the page.

    #120178
    tikaram
    Keymaster

    @jregunathan : Please add the following lines of code inside the functions.php of your child theme. The logo slider will move down above footer. Let me know if you need further assistance.

    function clean_education_pro_child_move_logo_slider_before_footer(){
    	remove_action( 'clean_education_before_content', 'clean_education_logo_slider', 70 );
    	add_action( 'clean_education_after_content', 'clean_education_logo_slider', 40 );
    }
    add_action( 'init', 'clean_education_pro_child_move_logo_slider_before_footer' );

    Regards,
    Tikaram

    #120205
    JRegunathan
    Participant

    Thank you. I will try the above and let you know if I have any further issues. Thanks again!

    #120319
    JRegunathan
    Participant

    Hello again,

    I finally had some time today to go in and create a child theme and test out your solution above, but I haven’t gotten as far as doing that because I now have a new problem…

    After activating my child theme, all my theme options, menu and widgets are now reverted back to the default settings. How do I apply my theme options to the child theme?

    I never bothered to create a child theme from the start because your theme allowed me to customize the css right in the them options. Please tell me, I do not need to reapply all my theme options, menu and widgets all over again.

    Thanks in advance for your help.

    #120400
    tikaram
    Keymaster

    @jregunathan :I am sorry to say that You have to reapply all the theme options, menu and widgets all over again because the theme options and all these items are saved under different names. You need to decide earlier either to use a child theme or not before doing the customizations. Its better to create a child theme at first and do the changes later so that you do not face any difficulties later.

    Regards,
    Tikaram

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Change order of sections on Featured Page on Clean Education Pro Theme’ is closed to new replies.