Site logo

[Resolved] No duplicate taxonomy description

Home Forums Support [Resolved] No duplicate taxonomy description

Home Forums Support No duplicate taxonomy description

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2555763
    Anna

    Hello!

    Look… Now I have taxonomy description on every pagination page category ot tag.

    for example:

    https://shpargalka.work/ferma/

    also someone description duplicate on https://shpargalka.work/ferma/page/2/ on every newxt /paged/2/

    I need have description on one first page only https://shpargalka.work/ferma/ here. And hide for all /paged/…..

    How to fixed this is?

    Thanks

    Best Regards
    Alena

    #2555856
    Leo
    Staff
    Customer Support

    Hi there,

    This PHP snippet should work:

    add_action( 'wp', function() {
        if ( is_paged() ) {
            remove_action( 'generate_after_archive_title', 'generate_do_archive_description' );
        }
    } );

    Learn how to add PHP: https://docs.generatepress.com/article/adding-php/

    #2567845
    Anna

    Thanks you! This is work!

    #2568838
    Leo
    Staff
    Customer Support

    No problem 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.