Is it possible to add some introductory text at the top of the woocommerce shop page…
http://mdsleisure-co-uk.ntc11-p1rea.seeinside.co.uk/shop/
So that it looks like this category page…
Is it possible to add some introductory text at the top of the woocommerce shop page…
http://mdsleisure-co-uk.ntc11-p1rea.seeinside.co.uk/shop/
So that it looks like this category page…
Hi @redleaf,
Thanks for reaching out.
There is no such option to add the description or subtitle on the shop page for the renew stack you are using currently. I would suggest you add a small piece of code into your child theme functions.php file to add the content to the shop page.
function __x__addcontent_before_shop_loop()
{
if(is_shop())
{
echo 'hello'; //change the content according to your need
}
}
add_action('woocommerce_before_shop_loop','__x__addcontent_before_shop_loop',5);
Remember that the above code will work if copied as it is and don’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.
Thanks
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.