For some reason even though in the customizer it is set for sidebar left, the sidebar inside of my shop pages are on the right. How can I achieve a left sidebar for all shop pages?
It looks like the changes you made were not saved properly as source code suggest sidebar is set to right hand side of the canvas. However you can use following CSS under Custom > CSS in the Customizer to display sidebar of left side:
.x-main.left {
float: right !important;
}
aside.x-sidebar.right {
float: left !important;
}