philippenantes
Forum Replies Created
-
Same here
win10 22H2 / windows defender / Chrome , installer blocked as Trojan:Script/Wacatac.B!ml is detected.
Duplicator 1.5.8 and 1.5.8.1 same result
Forum: Plugins
In reply to: [Manager for Icomoon] unable to upload icomoon zip fileHi, same here,
After a short investigation, I figured out that in line 236 of managerforicomoon.php (in the plugin folder), the plugin is testing MIME type.
if($file_info['extension'] != "zip" or $_FILES['managerforicomoon-zip']['type'] != 'application/zip'){
It scans for application/zip.
A var_dump test showed me that when I try to uplaod, the type is “application/x-zip-compressed” which can be reasonnably considered as accepted type.Just reflect the change or bypass it, for example
before:
if($file_info['extension'] != "zip" or $_FILES['managerforicomoon-zip']['type'] != 'application/zip'){
after :
if($file_info['extension'] != "zip" or ($_FILES['managerforicomoon-zip']['type'] != 'application/zip' && $_FILES['managerforicomoon-zip']['type'] != 'application/x-zip-compressed')) {
Worked for me.
Forum: Plugins
In reply to: [Leaflet Map] [Solved][2.14.0] Custom markers slightly misplacedHey there,
specifying parameters iconSize and iconAnchor works perfectly.
My suggested workaround is irrelevant, but maybe we should leave this thread, should someone miss the doc.
Many thanks
Cheers !Forum: Plugins
In reply to: [Leaflet Map] [Solved][2.14.0] Custom markers slightly misplacedThank you guys for the followup.
I was not aware of the iconSize parameter, thank you for this one. I guess this will make my workaround useless ??
Forum: Reviews
In reply to: [Gravity Forms Repeater Add-On] No longer works correctlyPARTIALLY SOLVED
Indeed , GravityForms 2.4+ includes (beta / hidden) repeater feature.
But the class name used in GF is the same GF_Field_Repeater.I ended up replacing the class name GF_Field_Repeater with GF_Field_Repeater2 in all occurrences in all files of the plugin.
And renaming every occurence of “repeater” with “repeater2” and ‘repeater’ with ‘repeater2’ (note the difference between ‘ and “).
Finally renamed files containing repeater with repeater2 (i.e. class-gf-field-repeater.php becomes class-gf-field-repeater2.php, etc ) and renamed the plugin folder.Obviously, this is a in quick and dirty mode, still I edited the plugin;
but A/it is no longer supported (Big up and many thanks anyway to the author) so no upgrade available = no upgrade overwrites
B/I guess GF will provide soon a gui for its native repeater.I repacked the whole working version, so you can download it here
https://www.dropbox.com/s/50kahlyb67gkq18/repeater2-add-on-for-gravity-forms.zip?dl=0This works at least for me. I’ve just tested it very briefly on a basic form, so I dont guarantee blah blah it will work for you Disclaimer blah blah.
Forum: Plugins
In reply to: [Column Shortcodes] Columns don’t display side by sideI guess you have a linebreak in your editor (text mode) between shortcodes.
you should have
[/one_third][one_third padding=”10px 10px 10px 10px”]and not
[/one_third]
[one_third padding=”10px 10px 10px 10px”](note the line break)
Forum: Reviews
In reply to: [Code Snippets CPT] Excellent>Would be great if shortcode could accept en ID as a parameter.
Good news, that’s possible using the id parameter in the shortcode.
\o/
Tried to with no luck. I have to admit, I didn’t dig very deep. Surely an issue on my side.Would be great if description would show the slug of the cpt, which is ‘code-snippets’
I mean, namely mention the CPT slug on the description tab of the plugin.
Sounds like you got it sorted?
Yes sure ! nothing difficult here. Only intended to help future ppl.
Anyway, thank you so much, great plugin, convenient, and as mentionned in another comment, the use of a CPT makes it extremely flexible and re-usable.
Awasome !
Cheers ??Forum: Plugins
In reply to: [Admin Page Framework] Add some HTML after validation (or submit)Thank you very much for your support ??
And for having taken the time to set up a working example.
Kudos on this one
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] conflict with Gravity FormsI also confirm the fix which works for me as well.
Kudos to everyone and especially to joelnewcomer on this one.
FYI in my case I had to edit line 563.