WooCommerce Pages on Oxygen
Shop Page
- Create an Archive template for Products
- Add WooCommerce Bar Section
- Add PHP Code
<?php
woocommerce_content();
?>
My Account Page
- Create a Single Page template
- Add WooCommerce Bar Section
- Add PHP Code
<?php
while(have_post()) {
the_post();
the_content();
}
?>