Eagleone1
Forum Replies Created
-
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.
Forum: Plugins
In reply to: [Enable Media Replace] Automatically Replace MediaBelieve me, your users will love this feature.
Thanks a lot for your attention and looking forward for plugin’s updates.
Even without promises!Regards!
Forum: Plugins
In reply to: [Enable Media Replace] Automatically Replace MediaHi 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,
Forum: Plugins
In reply to: [Enable Media Replace] Automatically Replace MediaHi,
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,
Forum: Plugins
In reply to: [Polylang] RTL Display Issues in iPad and AndroidHi,
I have already asked and waiting their reply.
Thanks anyway
Forum: Plugins
In reply to: [Polylang] Translation Issues with polylang plugin in Evolve themeIt worked perfectly!!!
Thanks again.
Polylang the first Multilingual plugin
Forum: Plugins
In reply to: [Polylang] Translation Issues with polylang plugin in Evolve themeI 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
Forum: Plugins
In reply to: [Polylang] Translation Issues with polylang plugin in Evolve themeI 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>Forum: Plugins
In reply to: [Polylang] Translation Issues with polylang plugin in Evolve themeI 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>Forum: Plugins
In reply to: [Polylang] Translation Issues with polylang plugin in Evolve themeHi 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
Forum: Plugins
In reply to: [Polylang] Dropdown Language List in MenuChrystl, Please take a look on this:
Forum: Plugins
In reply to: [Polylang] Dropdown Language List in MenuHi Chrystl,
I tried this. Not perfect but works
Thanks a lot
Georgios
Forum: Plugins
In reply to: [Polylang] Translation Issues with polylang plugin in Evolve themeHi 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
Forum: Plugins
In reply to: [Polylang] Translation Issues with polylang plugin in Evolve themeThanks I will do that!
Forum: Plugins
In reply to: [Polylang] Translation Issues with polylang plugin in Evolve themeHi 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