Viewing 8 replies - 31 through 38 (of 38 total)
  • Thread Starter Eagleone1

    (@eagleone1)

    Hi Chrystl,

    I changed in my config file but not working. I think the problem is the Redux Framework plugin that evolve theme uses in new 3.4.1. version.

    Try this in their plugin https://docs.reduxframework.com/core/advanced/wpml-integration/

    I make some tries according their examples but is very possible I made something wrong in code.

    In evolve theme 3.4.1 the check the themes/evolve/library/functions/basic-functions.php where you can find key options for the sliders, in similar form that redux framework shows in example.

    Hope you find something

    Georgios

    Thread Starter Eagleone1

    (@eagleone1)

    I also tried the following in my wpml-config file:

    <wpml-config>
    <admin-texts>
    <key name=”evl-options”>
    <key name=”evl_slide{$i}_title” />
    <key name=”$i <= 5″ />
    <key name=”evl_slide{$i}_desc” />
    <key name=”$i <= 5″ />
    <key name=”evl_slide{$i}_button” />
    <key name=”$i <= 5″ />
    </key>
    </key>
    </admin-texts>
    </wpml-config>

    Plugin Support Chrystl

    (@chrystl)

    I make some tries according their examples but is very possible I made something wrong in code.

    Could you paste here you code?

    Thread Starter Eagleone1

    (@eagleone1)

    I tried this

    <wpml-config>
    <admin-texts>
    <key name=”evl-options”>
    <key name=”evl_slide{$i}_title” />
    <key name=”$i <= 5″ />
    <key name=”evl_slide{$i}_desc” />
    <key name=”$i <= 5″ />
    <key name=”evl_slide{$i}_button” />
    <key name=”$i <= 5″ />
    </key>
    </key>
    </admin-texts>
    </wpml-config>

    Plugin Support Chrystl

    (@chrystl)

    In fact the code you have copied above is for the slide 5 ("$i <= 5"). You must interpreted it like this:
    "evl_slide5_title" instead of "evl_slide{$i}_title"
    "evl_slide5_desc" instead of "evl_slide{$i}_desc"
    "evl_slide5_button" instead of "evl_slide{$i}_button"

    So

    <wpml-config>
    	<admin-texts>
    		<key name="evl_options">
    			<key name="evl_slide5_title" />
    			<key name="evl_slide5_desc" />
    			<key name="evl_slide5_button" />
    		</key>
    	</admin-texts>
    </wpml-config>

    But apparently in this 3.4.1 version only the key name of the option name was changed in evl_options.

    Thread Starter Eagleone1

    (@eagleone1)

    I don’t know what to say. I have to learn a lot more.

    Yes, the strings appeared!!!

    I will apply all these in the whole slider and I will let you know.

    Once more thanks a lot Chrystl

    Georgios

    Thread Starter Eagleone1

    (@eagleone1)

    It worked perfectly!!!

    Thanks again.

    Polylang the first Multilingual plugin

    Have to say, this was very useful, thanks.

Viewing 8 replies - 31 through 38 (of 38 total)
  • The topic ‘Translation Issues with polylang plugin in Evolve theme’ is closed to new replies.