donnamcmaster
4/22/2018 - 7:35 PM

Woocommerce - URL's

<!-- Get and display the My Account page url -->
<?php echo get_permalink( wc_get_page_id( 'checkout' ) ); ?>

<!-- Get and display the Cart page url -->
<?php echo get_permalink( wc_get_page_id( 'cart' ) ); ?>

<!-- Get and display the Shop page url -->
<?php echo get_permalink( wc_get_page_id( 'shop' ) ); ?>

<!-- Get and display the Checkout page url -->
<?php echo get_permalink( wc_get_page_id( 'myaccount' ) ); ?>