• Hello, i can help for display content in shop page exemple: in /products

    Show the text =”text Custom!”.

    And others pages

    Not Display.

    I am test with is_page tag and ID and not work

    And test with this code:

    function my_custon( $content ) {
        if ( is_shop() ) {
            $content .= echo 'Text here!';
        }
    
        return $content;
    }
    add_filter( 'the_content', 'my_custon' );

    but the problem is the function “the_content” is content of all pages, and when active the content all pages in wordpress if hidden.

    Yours have the soluctions?

    Thanks!

    • This topic was modified 7 years, 8 months ago by bahl2.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Display Content Custon just in Shop Page’ is closed to new replies.