• bcook2024

    (@bcook2024)


    I want to add text below the word “Shop” on my main shop page. (I’d also like to change “Shop” to something else, if possible.

    I assume it’s a dynamic page, so I can’t find a way to edit that text. Do I need a plugin for that, or is there another way to do what I need to do?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @bcook2024,

    Thanks a lot for reaching out and sorry for the delay on this. If you want to rename “Shop,” you can often do this by editing the Shop page itself:

    • Go to Pages > All Pages and find your “Shop” page.
    • Edit the page title to change “Shop” to another name.

    You can add custom text below the title dynamically, you can add a code snippet to your theme’s functions.php file or use the Code Snippets plugin:

    add_action( 'woocommerce_before_main_content', 'add_text_below_shop_title' ); function add_text_below_shop_title() { if ( is_shop() ) { echo '<p style="text-align: center;">Your custom message goes here.</p>'; } }

    You might also find some useful options for customizing WooCommerce under the Appearance > Customize > WooCommerce > Store Notice section of your WordPress/Crio Customizer.

    I really hope this helps! Please let us know if we can answer anything else for you.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.