WooCommerce Pages on Oxygen

Shop Page

  1. Create an Archive template for Products
  2. Add WooCommerce Bar Section
  3. Add PHP Code
<?php
woocommerce_content();
?>

My Account Page

  1. Create a Single Page template
  2. Add WooCommerce Bar Section
  3. Add PHP Code
<?php

while(have_post()) {
the_post();
the_content();
}
?>