Viewing 1 reply thread
You must be logged in to reply to this topic.
Hello,
I am redirection theme from left to right, but some things did not change its direction when create the drop-down list, like that “>”, i need direction it to left “<“.
Also, i want ask how translate this “comments 0” , i know edit the language file, but this phrase lost in PO file.
thank you
Hello,
You can change the sign > with some custom css code.
The word “comment 0” is hard-codes. Edit the file ‘tower/includes/view/blog/commnets.php’, find the line:
<h4 class="single_title"><?php echo esc_html($count) ?> Comments</h4>
and replace with:
<h4 class="single_title"><?php echo esc_html($count) ?> <?php echo __('Comments', 'codeless') ?></h4>
Then regenerate the .po file with PoEditor.
Best regards!
You must be logged in to reply to this topic.