Hi,
Thanks for contacting us and choosing our product!
The easiest way to add description for Shop page is add content for it when you editing shop page with Default WordPress editor like this:
https://prnt.sc/_Hh0ORogv8z3
Another solution you can add this function in the functions.php file of the theme:
if ( ! function_exists( 'haru_shop_description' ) ) {
function haru_shop_description() {
echo '<div class="shop-description">' . esc_html__( 'Shop descripton here', 'pricom' ) . '</div>';
}
add_action( 'woocommerce_archive_description', 'haru_shop_description' );
}
If you need the best display you may need to add CSS code in Appearance -> Customize -> Additional CSS or add in the child theme:
.woocommerce-products-header .page-description {
padding: 0 15px;
}
Hope this helps!
****
Regards,
HaruTheme