Site logo

[Resolved] How to delete the text previous/next in navigation categories

Home Forums Support [Resolved] How to delete the text previous/next in navigation categories

Home Forums Support How to delete the text previous/next in navigation categories

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2573815
    ROHART

    Hi,

    On my categories, I customize the navigation as on this image https://www.i-trekkings.net/wp-content/uploads/2023/03/Capture-décran-2023-03-20-à-10.43.02.jpg. But I would like to delete the text Préc (previous) and Suiv (next). How I can do that ?

    All the Bbest

    Gregory

    #2573835
    David
    Staff
    Customer Support

    Hi there,

    can you share a link to the site where i can see this? I just need to see how its being output.

    #2573838
    ROHART

    Hi David,

    The site is a staking site under development. It is not accessible. Would you like temporary admin access to watch?

    #2573885
    David
    Staff
    Customer Support

    Yes, if you can provide a temporary login in the Private Information field 🙂

    #2573946
    ROHART

    Done 🙂

    #2574055
    David
    Staff
    Customer Support

    Ah ok.

    Add This PHP Snippet:

    
    add_filter( 'generate_previous_link_text', function() {
        return '←';
    } );
    add_filter( 'generate_next_link_text', function() {
        return '→';
    } );
    
    #2574132
    ROHART

    Thanks very much David.

    #2574337
    David
    Staff
    Customer Support

    You’re welcome

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