• Resolved soronu

    (@soronu)


    Hello again!

    Is it possible, to change the “You may also like”!text? I could find everything in the code to translate it, but not this text.

    thanks

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    check in the inc/related-posts.php file at sixth line.

    Regards.

    Thread Starter soronu

    (@soronu)

    Thanks a lot

    Can you also change the Searching settings, so that the searching results not show pages, only posts?

    Just add this code in the functions.php file:

    function tg_exclude_pages_from_search_results( $query ) {
        if ( $query->is_main_query() && $query->is_search() && ! is_admin() ) {
            $query->set( 'post_type', array( 'post' ) );
        }    
    }
    add_action( 'pre_get_posts', 'tg_exclude_pages_from_search_results' );

    Regards.

    • This reply was modified 2 years, 2 months ago by saraneve.
    Thread Starter soronu

    (@soronu)

    thanks a lot!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘you may like text’ is closed to new replies.