We are trying to implement WooCommerce into an existing WordPress site we have built on the Enfold theme. So far so good, however the ‘View Cart’ and ‘Checkout’ links on the WooCommerce drop down that comes in from the right hand edge are displaying incorrectly.
Instead of linking to the cart and/or checkout pages they are linking to current URL.
For example, if a user adds a new item to the cart the url is: ../?add-to-cart=3283
The links for ‘view cart’ and ‘checkout’ now both go to: ../?add-to-cart=3283
If the user goes to the about page at the following url: ../about/
The links for ‘view cart’ and ‘checkout’ now both go to: ../about/
We have not been able to locate a specific block of code within the theme files that is specifying how these links are generated.
We’d like to set these links to be static links to the ../cart/ and ../checkout/ pages, respectively.
Any suggestions on where we can accomplish this at?
Thanks!
J
Ah hah!
We had those pages set to private and apparently WooCommerce cannot use private pages.
That solved it. Thanks!