Hi,
Unfortunately “Post Grid” block is a part of the Visual Composer plugins and the button cannot be translated by theme’s translations.
You need to edit the plugin file and translate it there like this: http://screencast.com/t/CEtzgQEN
Result: http://screencast.com/t/vEKwHLpD0
Thanks!
Two more questions about Post Grid setting.
1. How can I change the “load more” button text? It seems it’s not on templstes.php file.
2. Can I give a link on text? I mean right now I should click the image or the button to read the post, but I also want to make the title and an excerpt clickable.
Thanks in advance.
Hi,
1. You can change the “load more” text from here – http://screencast.com/t/ah9r1OCW53
Result: http://screencast.com/t/TPkaPJgaNW
2. You can add “post_link” also for title and excerpt but you will need customize again post titles and and excerpt as will appear like a link – http://screencast.com/t/WyEHxj2TFZI – http://screencast.com/t/2UxXNCObcH3f
You have to inspect and customize with css for example – http://screencast.com/t/QtDiOYXbY
.vc_gitem-post-data-source-post_excerpt p .vc_gitem-link{
color: black;
}
.vc_gitem-post-data-source-post_title h4 a {
color: black;
}
Thanks!
Hi,
Try to add also font weight to above code for title:
.vc_gitem-post-data-source-post_title h4 a {
color: black;
font-weight: bold;
}
Thanks!