WebMat
Forum Replies Created
-
You are welcome
The new version “2.6.1” is now available.
Everything should be working correctly again. I took the opportunity to refine the extension and fix several issues.
Please feel free to give me your feedback.
Sincerely, Mathieu.
Hello,
You’re right, no problem 🙂
I’m working on it today; the update will be ready soon.
Thank you for your support, see you soon.
Hello,
Sorry for the delay. An update of the plugin is currently in progress and will be released soon to ensure full compatibility with the latest versions of Elementor.
See you soon.
You are right,
the version 2.5.3 fix the issue.
Thanks,
Best Regards, Mat.Hi @medieskolen
are you sure that issue coming with FEP ?
Do you can disable FEP then try again.
Thanks,
Mat.Hello Lars,
you should see these icons appearing in the top bar (left side).You may have disabled the option in your user preferences.
Mat.Hello,
the last release 2.5.2 solve the issue.
Let’s me know if everything be okay.
Best Regards,
Mat.Forum: Plugins
In reply to: [Flexible Editor Panel for Elementor] Panneau flottant innaccesibleBonjour,
la version 2.5.2 corrige le problème.
Merci pour votre retour.
Cordialement Mathieu.Forum: Plugins
In reply to: [Flexible Editor Panel for Elementor] Panneau flottant innaccesibleBonjour Thierry,
je ne comprends pas, avez vous essayer de reset la position de l’éditeur ?
Vous pouvez le faire à partir d’ici : /wp-admin/admin.php?page=fep-optionsPour que l’éditeur se superpose sur la barre noir, il doit être déplacé sinon sa position doit être proprement en dessous, je pense qu’un reset de sa position devrait le remettre proprement puis pouvoir être déplaçable.
Merci pour les détails, on va y arriver 🙂
FEP est utilisé sur plus de 30 000 sites WordPress, il n’y a pas de raison 🙂
Cordialement Mathieu.
Forum: Plugins
In reply to: [Flexible Editor Panel for Elementor] Panneau flottant innaccesibleMerci pour votre retour, c’est très bizarre, je n’arrive pas à reproduire le soucis.
J’ai rajouté le css pour qu’on soit sur, pouvez vous essayer cette version :
https://github.com/WebMatPro/flexible-elementor-panel/releases/tag/2.5.2
Merci,Cordialement Mathieu.
Forum: Plugins
In reply to: [Flexible Editor Panel for Elementor] Panneau flottant innaccesibleBonjour Thierry,
pourriez vous me donner les versions de votre Elementor et Flexible Elementor Panel ?
Vous ne devriez pas avoir ce problème avec la dernière version.
Cordialement Mathieu.
Okay, I just checked.
Are you talking about the black bar at the top?
If so, this bar is directly linked to the Elementor editor; it can’t be removed.
For options, in the editor, click on the Elementor logo (white) in the top left corner, then click on User Preferences.
Have I answered your questions?
Best Regards,
Mat.Hello guys,
thanks for your feedback.
I will correct it quickly.
Best Regards,
Mat.Forum: Plugins
In reply to: [Redis Object Cache] Serious Redis Object Cache BugI m agree.
Why do you not include this code below to your start file “object-cache.php” ?
That will be simple and secure.
Thanks.
if (!defined('WP_REDIS_DISABLED')) {
if (!class_exists('Redis')) {
define('WP_REDIS_DISABLED', true); // PHPRedis extension not installed
} else {
try {
$redis = new Redis();
$redis->connect('127.0.0.1', 6379, 1); // 1s timeout
if (!$redis->ping()) {
define('WP_REDIS_DISABLED', true); // Redis server not responding
}
$redis->close();
} catch (Exception $e) {
define('WP_REDIS_DISABLED', true); // Redis connection failed
}
}
}- This reply was modified 11 months ago by WebMat.