Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1084729

    Hello Support, I would simply like to have the text on my shop page be below my Product listing. Is this possible? Thanks!

    #1084882

    Hey moonknight066,
    Thank you for the link, but I couldn’t login to make the changes. Try adding this code to the end of your functions.php file in Appearance > Editor:

    function move_shop_content_below_products(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $('<div class="container new-woo-container">' ).insertBefore( '#top.woocommerce-page .container_wrap.footer_color' );
      $('#top.woocommerce-page .woocommerce-products-header .page-description').appendTo('.new-woo-container');
      $('.new-woo-container').css({'margin-bottom': '50px'});
      });
      })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'move_shop_content_below_products');
    

    Then clear your browser cache and check.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.