fried_eggz
Forum Replies Created
-
Forum: Plugins
In reply to: [HEIC Support] Replace uploaded media ID instead+1 on this. A great feature wold be a setting to replace the id and also remove the heic-image from the media gallery after conversion.
Thanks for your awesome work!
Forum: Plugins
In reply to: [HEIC Support] Not working with ImageMagick 7.1.0-62No problem. I think you could check for libheif using php in the plugin.
Maybe also som instructions on how to install it.
Anyways, good work on the plugin. I have a feature request but I’ll post it in a new thread.
Forum: Plugins
In reply to: [HEIC Support] Error with ImageMagick 7.1.0I had the same error message. So i downgraded to ImageMagic 6.9x (from the Ubuntu 22 apt repo and it works.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] I’m back!@tygobewise Thanks! I’ll do just that
Forum: Plugins
In reply to: [Gravity Forms Sticky List] I’m back!Thanks guys! You can help by finding out what I have to do to get the plugin “unlocked”.
Forum: Plugins
In reply to: [Autologin Links] Autologin Newsletter+1 for this!
Forum: Plugins
In reply to: [Autologin Links] Autologin Shortcode from Username/Email Address+1 for this feature. I need to generate autologin links when sending out invitations.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Only Show Sticky if there is an entryYou can use some simple jQuery to do this. If you examine the lists html you will se that the plugin adds classes and sort attributes to cells. Assuming the column you want to hide is column-2 you could do:
jQuery(document).ready(function($) { var text = $('.column-2'); var header = $('th[data-sort="column-2"]'); if(text.text() == "" ) { text.remove(); header.remove(); } });@chrisozon This has now been fixed and pushed to the repo. Update to version 1.5.2 to fix this. And please reconsider your review score if you like.
Yes. That is correct. First var is what form, seccond is by what user, and third is who can see/edit it
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Limit submissionsYou should be able to do this without an extra plugin. Just sett the limit in the normal settings for that for and the entry should then be editable using stickylist.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Permissions to edit an entryThey need to be either the creator of the entry or an Admin or have the correct capabillities
Hi there. I have fixed this but have not had time to post an update to the WP repo. The next version of Sticky List will have this bug fixed.
In the meantime you can patch it manually by editing line 2148, from this:
if (!isset($confirmation["event"])) {to this
if (!isset($confirmation["event"]) && GFCommon::evaluate_conditional_logic( rgar($confirmation, 'conditionalLogic'), $form, $lead )) {- This reply was modified 7 years, 6 months ago by fried_eggz.
Hi there. I have fixed this but have not had time to post an update to the WP repo. The next version of Sticky List will have this bug fixed.
In the meantime you can patch it manually by editing line 2148, from this:
if (!isset($confirmation["event"])) {to this
if (!isset($confirmation["event"]) && GFCommon::evaluate_conditional_logic( rgar($confirmation, 'conditionalLogic'), $form, $lead )) {Forum: Plugins
In reply to: [Gravity Forms Sticky List] Responsive mobile viewYes. But for the moment you have to do this yourself using CSS