sjreeves
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Sticky List] bug in PDF download after edit?It shows up in both — anywhere where a shortcode like
[gravitypdf name=”application” id=”4a28b97aae198″ text=”Download PDF”]
shows up. Somehow that shortcode is being given a new entry id rather than the same one that was being edited.
I checked with GravityPDF support, and they said this:
“Gravity PDF doesn’t generate entry IDs; it only gets fed them (in this case via the “gform_confirmation” filter). If the incorrect entry ID is showing after submitting your Sticky List edit entry form then the bug is likely in Sticky List.”
Forum: Plugins
In reply to: [Gravity Forms Sticky List] view mode not graying out form fieldsMy form didn’t have .gform_page_fields. When I changed it to .gform_fields, it worked partially. However, it only disabled <input> fields, not other fields like <textarea> and <select>. After educating myself a little on JQuery — thanks for forcing me to do that 😉 — here’s an alternative that works. And I think it works for all form fields:
$('div[id="gform_wrapper_<?php echo $form_id;?>"]').find(':input').attr('disabled','disabled');I also discovered that this works:
$("#gform_wrapper_<?php echo $form_id;?> .gform_fields :input").attr('disabled','disabled');Check that out, and let me know if that will do it.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] view mode not graying out form fieldsIs there anything I can do to help debug this? I looked at the source of the viewed form, and that line shows up in the jquery script block. It just doesn’t seem to have the desired effect.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] view mode not graying out form fieldsI double-checked everything and even went to https://plugins.trac.wordpress.org/browser/gravity-forms-sticky-list/trunk and downloaded a fresh copy. It has the line above at 933. Unfortunately, I’m still not seeing anything grayed out.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] view mode not graying out form fieldsThanks for the effort.
I replaced the plugin from the download link https://wordpress.org/plugins/gravity-forms-sticky-list/
Unfortunately, that did not fix the problem. Fields are not grayed out.