Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
I have created website using SO Page builder. I have just noticed site that content of homepage messed up on live site. It is due to update. Can you check why function not working properly. I found that inline css is not coming up like column width etc.
Current site (Messed) : http://www.midwestmole.com/
Dev site: http://mwm.ca-itspersonal.com/
I have show many pages on homepage with scrolling. I have used below code.
<?php $home_sections = CFS()->get( 'section' ); foreach ( $home_sections as $home_section ) { ?> <section id="<?php echo $home_section['id']; ?>"> <div class="container"> <div class="section_wrap"> <?php query_posts(array('page_id' => $home_section['page'][0])); while ( have_posts() ) : the_post(); ?> <h2 class="page_title"><span><?php the_title(); ?></span></h2> <div class="section_content"> <?php the_content(); ?> </div> <?php endwhile; wp_reset_query();?> </div> </div> </section> <?php } ?>
Waiting for your response to get solution. Thank you.