FYI – I figured it out!!
Instead of adding that string at the end of the functions.php file, I added it as a code snippet, and it actually worked like a charm!!!
Thanks!
Hello, I’m having the same issue as the OP, but when I added this code at the end of the functions.php file it throws a critical error and the site doesn’t load. I double checked the quotes and they looked correct. Here’s what the end of my file looks like:
remove_action( ‘woocommerce_archive_description’, ‘woocommerce_taxonomy_archive_description’, 10 );
add_action( ‘woocommerce_after_main_content’, ‘woocommerce_taxonomy_archive_description’, 5 );
});
}
I then removed this part “});” and left it like so, and the site starting loading normally, but the text description within the product categories remained unchanged:
remove_action( ‘woocommerce_archive_description’, ‘woocommerce_taxonomy_archive_description’, 10 );
add_action( ‘woocommerce_after_main_content’, ‘woocommerce_taxonomy_archive_description’, 5 );
}
Please let me know if I’m doing it wrong. I’m a newbie so would appreciate any layman explanation.
Thanks!