Guest User

Untitled

a guest
Nov 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.78 KB | None | 0 0
  1. Around line 44 you'll see <div class="row">
  2.  
  3. You'll need to add this on the line beneath it:
  4. <?php woocommerce_content(); ?>
  5.  
  6. So now they look something like so.
  7.  
  8. <div class="container">
  9.     <div class="row">
  10. <?php woocommerce_content(); ?>
  11.         <?php
  12.             foreach(explode(",", $page_section_order) as $key) {
  13.                 $fn = 'synapse_' . $key;
  14.                 if(function_exists($fn)) {
  15.                     call_user_func_array($fn, array());
  16.                 }
  17.             }
  18.         ?> 
  19.     </div><!--end row-->
  20. </div><!--end container-->
  21.  
  22. <?php get_footer(); ?>
  23.  
  24.  
  25. If you don't like the way every is pushed beneath the WooCommerce stuff, you can remove that section, so now it looks like:
  26.  
  27. <div class="container">
  28.     <div class="row">
  29. <?php woocommerce_content(); ?>
  30.     </div><!--end row-->
  31. </div><!--end container-->
  32.  
  33. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment