maximebj
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] Not Working in PHP 5.6I’ll update the readme.txt to say that PHP 7.0 minimum is required. Thanks.
I fully understand what you say Fencer, and I surely can change the few places where I use a PHP 7+ syntax.
I’ve just spend 5h on this plugin because Gutenberg has changed for the 1000th time things that broke the plugin, because they don’t care anymore. This is frustrating indeed.
So I’m trying to find where I used new syntaxes and write them in a retrocompatible way. I’m sure this can work well if I change a couple of things.
I’ll ship a new version today, please try and tell me if you see other errors. I’l try to fix them- This reply was modified 4 years, 7 months ago by maximebj.
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] Not Working in PHP 5.6As Thierry suggets, you should switch to PHP 7+ : there is no retrocompatibility issue to get to the newer version of PHP.
There are a lot of performance improvments, and for developers new syntaxes that simplify coding.
7.4 is new and stable. But if you wan’t to be sure, set 7.3
Yep, huge bug, but I’ve found the issue. I’m releasing a new version 1.9.6 today to fix this.
Thanks!
Forum: Plugins
In reply to: [Fitness Schedule] Make schedule icons a fixed-size ??I understand than it’s complicated for short workouts, but for now heights are only set according to duration.
Maybe you can set an greater height per hour, so even the short workouts have enough height.It can’t be fixed in CSS because Javascript calculate the position of elements according to their height.
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] Extension of core/code: deprecated doesn’t workMy plugin doesn’t use the core/code block but it’s own.
I use use depreciations but I advise you to read the docs:
https://developer.www.ads-software.com/block-editor/developers/block-api/block-deprecation/Zac Gordon’s Gutenberg course may also help you.
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] captions on lightboxesHello.
This plugins doesn’t have lightboxes so you may have mistaken with another one.
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] Inner Columns Full Height not working as expectedMy Plugin doesn’t provide a column manager. You may have mistaken with another plugin?
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] Message après installationNormalement ce sera résolu en 1.9.5 ! N’hésite pas rouvrir le sujet si ce n’est pas le cas.
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] Security – XSS StoredI’ve improved the security for the fields, and protected the pages from outside access in this new 1.9.5 release. Thanks for your feedback!
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] Currency symbol Position for Product blockThe price will be well displayed in the today release 1.9.5. I now use the wp_price function in frontend.
Forum: Plugins
In reply to: [Fitness Schedule] Mobile landscape viewYou can change the value directly in the code because for now, I don’t have other way.
Go in public/js/fitness-planning-public.js
Search forif(this.clientWidth < 600) {
and change the value, maybe for 480.So only the portrait view will go responsive.
Sorry I don’t have a better solution for now.Forum: Plugins
In reply to: [Fitness Schedule] Logo still shownThe show logo option is only for the main schedule.
I should have tested the presence of a logo or not before trying to display it in the bubble.
What you can do is uploading a small white image with nothing in it, and set it as the logo for now. So the plugin has something to display.
I’m checking my code and it seems than I check the existence of the image, but not the right way. I’ll fix that in a next release but I don’t know when it will be.
Forum: Plugins
In reply to: [Fitness Schedule] Disable popup window for workoutIt’s a good idea indeed.
I don’t get too much time to do it right now but I’ll definitely add the feature in a next release.For now you can add a little CSS in Divi to block this behavior :
[id^='fitplan-'] .fitplan-planning:not(.fitplan-planning-mobile) .fitplan-planning-item:hover .fitplan-planning-item-bubble { display: none !important; }
Should do the trick!
Thanks for the feedback.
Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] additional css classes not taken into accountFixed in 1.9.5 thanks to you.
Thanks for your precious Feedback !Forum: Plugins
In reply to: [Advanced Gutenberg Blocks] Security – XSS StoredThanks ! I’ll fix every option field with proper validation functions in the bnext release;