Hi,
I can see you have updated Cornerstone to latest version but forgot to update your theme.
Please update your theme to Version X 6.0.2
With regards to your product page, Change the code I provided above in your child theme’s functions.php
with this
// Remove product gallery slider and gallery zoom
// =============================================================================
add_action( 'after_setup_theme', 'remove_woo_three_support', 11 );
function remove_woo_three_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
remove_theme_support( 'wc-product-gallery-slider' );
remove_theme_support( 'wc-product-gallery-lightbox' );
}
// =============================================================================
/*---Move Product Title*/
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
add_action( 'woocommerce_before_single_product_summary', 'woocommerce_template_single_title', 5 );
You still need to add this css
.woocommerce div.product .images {
position: relative;
float: none;
width: 100%;
}
.woocommerce div.product .summary {
float: none;
clear: both;
width: 100%;
margin-top: 20px;
display: block;
}
Further customizations from here would be getting into custom development, which is outside the scope of support we can offer. If you need more in depth changes, you may wish to consult with a developer. X is quite extensible with child themes, so there are plenty of possibilities.
Thanks