How to setup a multilingual custom fields
-
I am really new for wordpress and translate-x.
I have a head slider from theme “Dreamy Hotel”.
https://motellejolibourg.ipage.com/fr/All the sliders heading and sub-heading can be translated by qTranslate-x except “Read more…” field in the below code.
echo “<span>Read more… </span>I tried
echo “<span>[:en]Read more[:fr]En savoir plus[:zh]阅读更多[:es]Leer más[:]</span>It just show all the text between the span tag.
Is anybody can point me to the right direction.Thanks!
JunBelow is the original code.
foreach((array)$allslider_images as $image => $data)
{
$i++;
if($name==$data[‘slider_type’])
{
if(($type==”accordion”) OR ($type==”roundabout”) OR ($type==”flex”))
{
$li=”- “;$liend=”
“;
}
echo $li;
if($type==”bgslider”)
{
echo “{image: ‘”.$data[‘file_url’].”‘},”;
}
if($type==”flex”)
{
echo “<img src='”.$data[‘file_url’].”‘ alt=” />”;
}
if(($type==”cycle”) OR ($type==”nivo”))
{
$c_align=” align=’left’ “;
if($data[‘type’]!=”html”)
{
echo “<div class=’cycle_element’ style=’background:url(“.$data[‘file_url’].”) center center no-repeat; height: “.$data[‘height’].”‘><img alt=” src='”.$data[‘file_url’].”‘ style=” height='”.$data[‘height’].”‘ /><div class=’cylce_element_content’>”;
}
if($data[‘type’]==”html”)
{
echo “<div class=’cycle_element’>”.stripslashes($data[‘file_url’]);
}
if($data[‘heading’]!=””)
{
echo “<h2><span>”.$data[‘heading’].”</span></h2>”;
}
if($data[‘subheading’]!=””)
{
echo “<h3><span>”.$data[‘subheading’].”</span></h3>”;
}
if($data[‘image_links_to’]!=””)
{
echo “<span>Read more… </span>“;
}
}
- The topic ‘How to setup a multilingual custom fields’ is closed to new replies.