Hi,
I have made the changes in the source code with the plugin WPide. So, you have to select it in the left sidebar menu. Then, open your theme folder in the right section ‘Files’.
If you want to change the sections order, you have to edit the next files for each kind of background:
- Image slider: page-background-image-slider.php
- Parallax: page-background-parallax.php
- Video own: page-background-video-own.php
- Video youtube: page-background-video-youtube.php
- Video vimeo: page-background-video-vimeo.php
For example, in your home, if you want to show the ‘Empty1’ section below the ‘App demo’ section, you have to copy the next code:
$sectionPageID = vp_option('vpt_option.empty_section_1_page');
if ($sectionPageID != ""){
sec_empty_section_1();
}
and paste it after the next code:
$sectionPageID = vp_option('vpt_option.video_section_page');
if ($sectionPageID != ""){
sec_video_section();
}
Regards