Change "Leave a Reply" text in portfolio

Hi there,

Have tried some of the fixes in that came up, but couldn’t get any of them to work.

I would like to change the “Leave a Reply” text of a portfolio entry.

image

Page it is on is here:

https://akinyoga.com/portfolio-item/easy-movement/

You will need to login to see it, so I will give you those details in a secure note.

Thank you.

Hi @ifkda,

Thanks for reaching out.
To change the Leave a Reply text for the Portfolio items, you need to add custom code. I would suggest you add the following code at your Child Theme functions.php file.

function _x_comment_reform ($arg) 
{
    if(is_singular('x-portfolio'))
    {
        $arg['title_reply'] = __('Leave a Comment:'); // replace 'Leave a Comment' to your own text
        return $arg;
    }	
}
add_filter('comment_form_defaults','_x_comment_reform');

Remember that the above code will work if copied as it is and don’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something in your site nor will we enhance it.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.