Okay
  Public Ticket #1771955
Custom Link Text For Portfolio (View Project)
Closed

Comments

  • Boomin started the conversation

    Is there a way to change the "Link text" for a specific Portfolio Project? By default it is "View Project". I know im able to do so, in the Portfolio Options.. Butt that changes the Link Text for all portfolio slides. I want to change it for just 1. maybe custom CSS?

  •  8,997
    Tahir replied

    Hey Again,

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

    You can find the list of string in "salient/lang/nectar_salient_strings.pot" file next to the "msgid" variable as below.

    msgid "Leave a Reply"
    msgid "Cancel Reply"
    

    In The "Text Domain" field write "salient" without quotes . If you are trying to change woocommerce words  add "woocommerce" in "Text domain" . The fields are case-sensitive meaning "next project" wont work and you will have to add "Next Project" .


    Thanks 


    ThemeNectar Support Team 

  • Boomin replied

    Thanks for The Reply Tahir,

    So the deal is, it has changed. But it changed on all portfolio pages. I need to change it for this specific Portfolio Slide named "We Are Addicted to Video". Maybe you have explained down below and i don't understand your answer completely. So I've that's the case, could you be a bitt more specific.

    Thanks!


  •  8,997
    Tahir replied

    Hey Again,

    Unfortunately its only possible to change it globally and not for a specific page via the theme options. Try using this JS Hack instead: Change "ALL" and "Sort Portfolio" Text on Portfolio Filter Bar [JS hack]

    Best 


    ThemeNectar Support Team 

  • Boomin replied

    Sorry to bother you that much Tahir, The Portfolio Link Text isn't changing. I've put a raw JS element in the home_slider Page underneath the "Recent Projects" Element. And am not sure were to change the JS Script to, you provided.

  •  8,997
    Tahir replied

    Hey,

    Please provide the page url so that i can write up the custom css for whats possible.

    Thanks


    ThemeNectar Support Team 

  • Boomin replied

    Thanks!

    It is the first portfolio slide

    http://www.contentjunkies.nl/6-2/

    And this is the Case Study of that Portfolio Slide.

    http://www.contentjunkies.nl/portfolio/addicted-to-video/

  • Boomin replied

    He Tahir,

    Got any luck? in case you've found a solution. is there a way to change to color on a specific project slide as well? like the main title?

  • Boomin replied

    The reason why, is because this pretty unreadable.

  •  8,997
    Tahir replied

    Unfortunately the text change is not possible with css alone. 

    To change the color use below . The nth-child selector uses the slide number so the 4th slide color is only changed by this css:

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .nectar_fullscreen_zoom_recent_projects[data-slider-text-color="light"] .project-slide:nth-child(4) .project-info h1 {
        color: #000000;
    }
    .nectar_fullscreen_zoom_recent_projects[data-slider-text-color="light"] .project-slide:nth-child(4) .project-info a {
        color: #000000;
    }
    

    Best


    ThemeNectar Support Team 

  • Boomin replied

    Legend! thank you so much! isn't that also a way to change the "View Projects" in that way as described for changing color on 1 page?

    Thanks again Tahir!!

  •  8,997
    Tahir replied

    Could you allow us to log in to your website backend dashboard so we can check on this for you more?. We are gonna need the username and password of admin user as well as the login url.


    ThemeNectar Support Team 

  •   Boomin replied privately
  • Boomin replied

    and?

  •  8,997
    Tahir replied

    Just added additional css to change the wording of the first Project Slide. 

    .nectar_fullscreen_zoom_recent_projects[data-slider-text-color="light"] .project-slide:nth-child(1) .project-info a:before {
        content: 'We Are Addicted to Video';
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        visibility: visible;
        top: 30px;
    }
    .nectar_fullscreen_zoom_recent_projects[data-slider-text-color="light"] .project-slide:nth-child(1) .project-info a {
        visibility: hidden;
    }
    .nectar_fullscreen_zoom_recent_projects[data-slider-text-color="light"] .project-slide:nth-child(1) .project-info a:after{
        visibility:visible !important; 
    }

    Thanks


    ThemeNectar Support Team 

  • Boomin replied

    You are a true Legend! Thank you so much!!