fried_eggz
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Editing comma separeted values drops commaHmm. That is wierd. What Number Format are you using on the field?
- This reply was modified 8 years, 8 months ago by fried_eggz. Reason: typo
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Allow Users to only see their entryThere are two ways to do this.
Option 1. Put this in a template file:
echo do_shortcode( "[stickylist id='1' user='" . get_current_user_id() . "']");Option 2. Put this in functions.php
add_filter('filter_entries','hide_some_rows' ); function hide_some_rows($entries) { foreach ($entries as $entryKey => $entryValue) { if ($entryValue["creaded_by"] != get_current_user_id()) { unset($entries[$entryKey]); } } return $entries; }- This reply was modified 8 years, 8 months ago by fried_eggz.
- This reply was modified 8 years, 8 months ago by fried_eggz.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] edit the informationI’m going to mark this as resolved. If you still have issues, please re-open the thread.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Update not working in ajax modeThis should be fixed with the latest version (1.4.4) that was just uploaded.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] New entry in rg_lead when updating form entryThis should be fixed with the latest version (1.4.4) that was just uploaded.
If you still have issues, please post here.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Sorry for the lack of updatesThank you.
This should be fixed with the latest version (1.4.4) that was just uploaded.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] edit the informationIt should not display an empty form. Please double check your settings and make sure that you have the correct page selected in the Embedd page/post dropdown
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Editing comma separeted values drops commaThis has been fixed in the latest version (1.4.3)
Forum: Reviews
In reply to: [Gravity Forms Sticky List] Great Plugin, until it stopped workingThe plugin has now been updated and a new version is avalible
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Distinguishing new entries?This has been implemented and will be uploaded today
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Editing comma separeted values drops commaWhat field type are you experiencing this with?
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Hide List until Search done@jeanlondon12. Did you solve this? If so, please post your solution.
Im marking this topic as resolved. Please feel free to open a new support request if you need.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Shortcode Sticky list $user_id logged in users@wpsupport2248, in your php template file (that is used to display the form) put this:
$user_id = get_current_user_id(); echo do_shortcode( “[stickylist id=’xxx′ user=’” . $user_id . “‘]”);where xxx is the ID of your form.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] List All Entries of User Across All FormsIll tag this as a feature request
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Hide/show column per user roleYou can do this with php and som css.
Pseudo code
if(current_user is admin) <style> .header-name display: none;