The Retailer - Proceed to checkout not showing

The issue appears because the theme sets the opacity of the main container to 0 on the checkout page. To fix it you have to set in you main css file the following rule:

body .global_content_wrapper, .page_full_width {
    opacity: 1;
}

 

Back To Top