Forum Replies Created

Viewing 15 replies - 1 through 15 (of 30 total)
  • Hi there,

    I have exactly the same problem just like Xandro and my PHP version is 7.2.34

    Please check the wp-content/plugins/wp-dark-mode/includes/modules/social-share.php on line 466.

    Thanks

    • This reply was modified 3 years, 6 months ago by Eagleone1.
    Thread Starter Eagleone1

    (@eagleone1)

    Believe me, your users will love this feature.

    Thanks a lot for your attention and looking forward for plugin’s updates.
    Even without promises!

    Regards!

    Thread Starter Eagleone1

    (@eagleone1)

    Hi Sixaxis,

    I agree with you, the easiest way is to use an existing image. However, when you want to do it automatically from a python code the only solution I found is to upload the same featured image every time upload a post and consequently WordPress save this image with a new name. If you know something more how to do it with python, please share it with me.

    Before some years there was a plugin (overwrite uploads) which did the job automatically, but unfortunately this plugin does not work with PHP 7 and newer. Overwriting uploads is a very interesting and useful feature by any perspective. It would be very useful if you add it to your plugin.`

    Thank you for your kind attention,

    Best regards,

    Thread Starter Eagleone1

    (@eagleone1)

    Hi,

    Thanks for your reply,

    This feature could be a very useful when you upload many posts with the same thumbnail – Featured Image – using a program language such as Python in this case. Doing so, WordPress duplicates the images and then I have to replace them manually using your plugin. If you had the option to do it automatically from the beginning the task would be much easier.

    Regards,

    Thread Starter Eagleone1

    (@eagleone1)

    Hi,

    I have already asked and waiting their reply.

    Thanks anyway

    Thread Starter Eagleone1

    (@eagleone1)

    It worked perfectly!!!

    Thanks again.

    Polylang the first Multilingual plugin

    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)

    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>

    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>

    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)

    Thread Starter Eagleone1

    (@eagleone1)

    Hi Chrystl,

    I tried this. Not perfect but works

    Thanks a lot

    Georgios

    Thread Starter Eagleone1

    (@eagleone1)

    Hi there

    I have the evolve 3.4.1 and I want to translate the parallax slider

    Under your instructions I’ve done this in my 1.9.0 plus version but the strings don’t appear in new 3.4.1 version

    I noticed that in their library basic-functions.php file they made some changes

    Version 3.4.1 the parallax slider sector is the following:

    /* Parallax Slider */

    function evolve_parallax() {
    global $evl_options;
    if ($evl_options[‘evl_show_slide1’] == “1” || $evl_options[‘evl_show_slide2’] == “1” || $evl_options[‘evl_show_slide3’] == “1” || $evl_options[‘evl_show_slide4’] == “1” || $evl_options[‘evl_show_slide5’] == “1” ) {
    echo “<div id=’da-slider’ class=’da-slider’>”;

    for($i = 1; $i <= 5; $i++) {
    if ( $evl_options[“evl_show_slide{$i}”] == “1” ) {

    echo “<div class=’da-slide’>”;

    echo “<h2>” . esc_attr( $evl_options[“evl_slide{$i}_title”] ) . “</h2>”;

    echo “<p>” . esc_attr( $evl_options[“evl_slide{$i}_desc”] ) . “</p>”;

    echo do_shortcode( $evl_options[“evl_slide{$i}_button”] );

    echo “<div class=’da-img’><img class=’img-responsive’ src='” . $evl_options[“evl_slide{$i}_img”][‘url’] . “‘ alt='” . $evl_options[“evl_slide{$i}_title”] . “‘ /></div>”;

    echo “</div>”;
    }
    }

    echo “<nav class=’da-arrows’><span class=’da-arrows-prev’></span><span class=’da-arrows-next’></span></nav></div>”;
    }

    And in the previous 1.9.0 plus or 3.3.0 free which works,was the following:

    /* Parallax Slider */

    function evolve_parallax() {

    $imagepathfolder = get_template_directory_uri() . ‘/library/media/images/’;

    echo “<div id=’da-slider’ class=’da-slider’>”;

    $evolve_slide_1 = evolve_get_option(‘evl_show_slide1′,’1’);
    $evolve_slide_2 = evolve_get_option(‘evl_show_slide2′,’1’);
    $evolve_slide_3 = evolve_get_option(‘evl_show_slide3′,’1’);
    $evolve_slide_4 = evolve_get_option(‘evl_show_slide4′,’1’);
    $evolve_slide_5 = evolve_get_option(‘evl_show_slide5′,’1’);

    if ($evolve_slide_1 == “1”) {

    $evolve_slide1_title = evolve_get_option(‘evl_slide1_title’,’Super Awesome WP Theme’);if ($evolve_slide1_title === false) $evolve_slide1_title = ”;
    $evolve_slide1_desc = evolve_get_option(‘evl_slide1_desc’,’Absolutely free of cost theme with amazing design and premium features which will impress your visitors’);if ($evolve_slide1_desc === false) $evolve_slide1_desc = ”;
    $evolve_slide1_button = evolve_get_option(‘evl_slide1_button’,’Learn more‘);if ($evolve_slide1_button === false) $evolve_slide1_button = ”;
    $evolve_slide1_img = evolve_get_option(‘evl_slide1_img’, $imagepathfolder . ‘parallax/6.png’);if ($evolve_slide1_img === false) $evolve_slide1_img = ”;

    echo “<div class=’da-slide’>”;

    echo “<h2>”.esc_attr($evolve_slide1_title).”</h2>”;

    echo “<p>”.esc_attr($evolve_slide1_desc).”</p>”;

    echo do_shortcode($evolve_slide1_button);

    echo “<div class=’da-img’><img class=’img-responsive’ src='”.$evolve_slide1_img.”‘ alt='”.$evolve_slide1_title.”‘ /></div>”;

    echo “</div>”;

    }

    I created the same wpml-config.xml file for the new version but doesn’t work!

    Could you help me about this?

    Thanks in advance

    Georgios

    Thread Starter Eagleone1

    (@eagleone1)

    Thanks I will do that!

    Thread Starter Eagleone1

    (@eagleone1)

    Hi Chrystl,

    I just want to know how I can find the the name of these options that is written in key name
    for the parallax slider is <key name=”evl_slide1_title” />
    <key name=”evl_slide1_desc” />
    <key name=”evl_slide1_button” />

    where I can find the same for the bootstrap slider in Evolve theme?

    The above I found in their forum, but for the bootstrap slider they haven’t any

Viewing 15 replies - 1 through 15 (of 30 total)