Hi again !
I want to change some text button on blog page, but i don't find where i can change it ;( I want replace "read more" by "en lire plus", french traduction so.
image : http://i.imgur.com/DacVepP.png
Someone can help ?
Regards,
© Copyright 2013-2017 DrupalExp - All Rights Reserved
And, btw, change "posted by" to !
Hello,
You just open file node--article--teaser.tpl.php and replace text
Thank you.
Yeah ! Thanks !
Hi guys!
I understand this is the "dirty" way to do it right?
If I have a multilingual site, how this should be done?
Thanks!
Hello,
In this case, you just wrapper condition to check language:
<?php if ($node->language == 'LANG_A'):?>
echo 'BUTTON TEXT LANG A';
<?php endif; ?>
<?php if ($node->language == 'LANG_B'):?>
echo 'BUTTON TEXT LANG B';
<?php endif; ?>
Thank you.
thank you lehoa.
You guys are masters of the code :P