fried_eggz
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Comma separate checkbox fieldsGood idea! I have added a setting for this (will be included in version 1.5) where you can choose between space or comma. The setting is located under “General settings” and its called “Multiple values separator”.
Do you need these tables to be present on the same page? If not, you can modify the code above to check the current page and filter entries accordingly.
Absolutely. You can use a filter.
add_filter('filter_entries','hide_some_rows' ); function hide_some_rows($entries) { foreach ($entries as $entryKey => $entryValue) { $number = intval($entryValue["9"]); if ( $number < 50 || $number > 100 ) { unset($entries[$entryKey]); } } return $entries; }The above code, when placed in
functions.phpwould remove all rows from the list where the value of field id 9 is not between 50 and 100.Note that you need to change
$entryValue["9"]to the id of the field that you want to check.Forum: Plugins
In reply to: [Gravity Forms Sticky List] Table Not ResponsizeThe table is responsive, it occupies 100% of its parents width. Other than that, you have to style the table yourself using CSS. There is almost no styling at all applied to the table out of the box.
There is a section in styling in the readme that you can check out.
- This reply was modified 8 years, 5 months ago by fried_eggz.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Edit submission – update postConfirmed and fixed. Thank you for noticing. Please re-download 1.4.5.1 (no new version for this fix). If it works as it should you can mark this topic as resolved.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] API versionThe GFAPI class was introduced to Gravity Forms in version 1.8. I don’t think the API is separately versioned. Sticky List supports all Gravity Forms version from 1.8.19.2 and up. Hope that answers your question.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Hook into post_edit_entry functionJust an update @tbare. I’ve had to change the name of the hooks implemented due to possible naming collisions. Actions are now called:
do_action( 'stickylist_entry_deleted', $entry )do_action( 'stickylist_entry_edited', $old_entry, $new_entry )Watch out for this if you update to 1.4.5+
Forum: Plugins
In reply to: [Gravity Forms Sticky List] PrintingI’m going to tag this as a feature request and mark it as “not a support question”
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Edit Gravity Forms Sticky ListI’m going to mark this as resolved. If you’re still having problems, feel free to re-open.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] There was an error while saving your settingsI’m going to mark this as resolved. If you’re still having problems, feel free to re-open.
- This reply was modified 8 years, 6 months ago by fried_eggz.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Edit overwrites unchanged fieldsI see the problem. You want to the user to be able to come back and add to the form. The problem with this approach is that Gravity Forms does not work that way. Fields/pages that are hidden with conditional logic will not be saved. That is why the previously entered information is wiped upon re-save.
Here is a solution. Use checkboxes (or multi select dropdown) instead of single select dropdown. When a checkbox is checked you show that page. This way, when the user returns to open another checkbox, the old checkbox is still checked and that page is shown, and when saved all info is saved.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Entry don’t show (edit or view) after to 1.4.5A fix has been uploaded. Please upgrade to version 1.4.5.1. Thanks again!
Forum: Plugins
In reply to: [Gravity Forms Sticky List] CURRENT VERSION IS BROKENThe issue is now fixed and a working version (1.4.5.1) has been uploaded.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Entry don’t show (edit or view) after to 1.4.5Thank you both for helping me troubleshoot. Something seems to have gone wrong when pushing the new version to the WordPress repository. Will fix and upload in 12 hrs.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Entry don’t show (edit or view) after to 1.4.5@chuantong, I cannot reproduce the error on my machine using your form. Can you confirm that everything works when you reverted back to 1.4.4?
@rivmedia I have sent you an email asking for some more information. Please read it if you have time.