I am trying to move the product title above the product image on the product archive page. I have managed to figure out how to move the information, but the price is moving abov
Try this below code
Please change the code in below file
wp-content/plugins/woocommerce/templates/content-product.php
OR
wp-content/theme/yourtheme/woocommerce/templates/content-product.php
do_action( 'woocommerce_before_shop_loop_item' );
do_action( 'woocommerce_before_shop_loop_item_title' );
do_action( 'woocommerce_shop_loop_item_title' );
do_action( 'woocommerce_after_shop_loop_item_title' );
do_action( 'woocommerce_after_shop_loop_item' );
Replace it
do_action( 'woocommerce_shop_loop_item_title' );
do_action( 'woocommerce_before_shop_loop_item' );
do_action( 'woocommerce_before_shop_loop_item_title' );
do_action( 'woocommerce_after_shop_loop_item_title' );
do_action( 'woocommerce_after_shop_loop_item' );