Okay
  Public Ticket #2388505
Need to change "Next Project" text label
Closed

Comments

  • steenr started the conversation

    As my page is in Danish - I need to change the portfolio footer label "Next Project" to "Næste". I read that this could only be done in function.php line 3008,... but functions.php has only 233 line and no text string "Next Project"

    kind regards

    Steen

  •  2,979
    Andrew replied

    Hi Steen,

    Try using this Plugin : https://wordpress.org/plugins/say-what/ . 

    4323914697.png


    Hope this helps.

  • steenr replied

    Thanks! It resolved my immediate problem, but some CSS code might have been a better solution.

    kind regards

    Steen


  •  2,979
    Andrew replied

    Hi Steen,

    Using the plugin is much better should you need to change other text in the website.

    Try the following css:

    #portfolio-nav #next-link a > span {
        display: none;
    }
    #portfolio-nav #next-link a:before {
        content: "Next";
    }
    

    Kind regards.