Hi, I would like to rename “view post” Button on index featured post
And remove see all post button
Could you tell how to fix it?
Thanks in advance
xsurve.co.jp/post
Hi, I would like to rename “view post” Button on index featured post
And remove see all post button
Could you tell how to fix it?
Thanks in advance
xsurve.co.jp/post
Hi Razick,
Thanks for writing in. To change the View Post text, Please install and activate the child theme and login through FTP then edit the functions.php of the child theme then add this code:
// Translate Strings
add_filter( 'gettext', 'translate_x_strings', 20, 3 );
function translate_x_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'View Post' :
$translated_text = __( 'View Post Translation', '__x__' );
break;
}
return $translated_text;
}
To get rid of the see all button, please add this code in X > Theme Options > CSS:
.blog .x-btn-filterable.x-btn {
display: none;
}
Hope this helps.
Thanks Jade, it was great helpful, that’s what I needed. thanks again
You’re very welcome, Razick!
having another issue related. kindly please
xsurve.co.jp/post
please check screenshot, I need to show more text here. but in one line text hidden. is it an issue or any setting for this?
thanks
Hi thanks, I resolved it in blog setting > content
Regards
Glad to hear you got it sorted, Razick.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.