On October 18, 2014 at 6:54 pm
1. To make the accordion slider fields translatable, open up accordion.php and replace this:
<h3 class="entry-title">
<a <?php if (!empty ($arr['slide_url'])) { ?>href="<?php echo $arr['slide_url']; ?>"<?php } ?>><?php echo $arr['slide_title']; ?></a>
</h3>
<p><?php echo $arr['slide_description']; ?></p>
with this:
<h3 class="entry-title">
<a <?php if (!empty ($arr['slide_url'])) { ?>href="<?php echo do_shortcode($arr['slide_url']); ?>"<?php } ?>><?php echo do_shortcode($arr['slide_title']); ?></a>
</h3>
<p><?php echo do_shortcode($arr['slide_description']); ?></p>
2. To make the “front page posts title and description” translatable, open up layout3.php and replace this:
<?php echo $asteria['posts_title_id']; ?>
with this:
<?php echo do_shortcode($asteria['posts_title_id']); ?>