• Resolved dodompa

    (@dodompa)


    I am having problems with the localisation of the updated theme. Old settings seem to be gone, at least I can not figure out how to get the the Related Posts title get translated. It is not even in the PO file.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Richie KS

    (@rkcorp)

    yes, the previous string use TEMPLATE_DOMAIN as domain string but the theme submit guideline needed the theme name ‘mesocolumn’ to be use.

    seem like the new version did not wrap the related post text. added this to next update ticket. meanwhile try add this to functions.php or your own meso-custom-functions.php (read faq on how to create one in wp-content)

    <?php
    function meso_custom_rel_text() {
    return 'My Own Related Text';
    }
    add_filter('meso_related_text','meso_custom_rel_text');
    ?>

    Great. This solution could be in the FAQ section of the theme

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Localisation difficulties’ is closed to new replies.