• Resolved Simo2606

    (@simo2606)


    Hello,

    I have the following problem:

    I should modify Shop Page text, but it seems not possibile. I tried this: changed the settings under WooCommerce / Settings / Products / Shop page —> put another page as Shop Page —-> modify the old shop page —-> put the old page as Shop Page
    But I see the old text.

    In my archive-product.php file inside my child theme, I put some code in order to display category description, so if I enter inside a category page I can see the descriptions; but the Shop Page is not a category page, so I can’t find my text here.

    Could someone help me?

    Thank you very much

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support EastOfWest a11n

    (@eastofwest)

    Hey there,

    Could you please provide the following info to help us better understand what it is you’re trying to achieve:

    • specify which page is your shop page
    • provide a screenshot of the text you want to change
    • explain how you want to change it – do you want to move it, for example?
    • if you want to move it, provide a screenshot of where you want to move it to.

    If I had to guess, then on this page it looks like you have some text at the bottom of the page and you want to move it to the top?

    Screenshot of text at the bottom of what might be the shop page

    Thread Starter Simo2606

    (@simo2606)

    Hello!

    Thank you for your kind reply!

    The shop page is: https://www.torinogioielli.com/catalogo-gioielli/

    The text is the one in your screenshot.

    I only need the change the text itself, in the backend I can see the text and modify it, but in frontend I can’t see the modifications.

    I tried this: changed the settings under WooCommerce / Settings / Products / Shop page —> put another page as Shop Page —-> modify the old shop page —-> put the old page as Shop Page
    But I always see the old text…

    Thread Starter Simo2606

    (@simo2606)

    Hello!

    Is there any kind of news about my question?

    Thank you!

    Thread Starter Simo2606

    (@simo2606)

    I solved! In function.php file I added this code in order to show a custom text in shop page, if could be useful for someone:

    add_action( ‘woocommerce_after_main_content’, ‘my_text’, 20 );
    function my_text() {
    if( is_shop() ) {
    print ‘the text you want’;
    }
    }

    • This reply was modified 4 years ago by Simo2606.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘I can’t modify Shop Page text’ is closed to new replies.