fried_eggz
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Shortcode Sticky list $user_id logged in usersYou can find the donate link on the bottom of the Sticky List settings page. But if possible, I would prefer if you wrote a review of this plugin if you find it useful. Reviews can be left here: https://wordpress.org/support/plugin/gravity-forms-sticky-list/reviews/. Thank you!
Thank you for your bug report. Would you mind exporting your form and posting a link to it here so that I can import and test it?
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Deletes entries after submissionThank you. I have been able to reproduce this. This happens when Sticky List is used with the Partial Entries Add-On. I will do some more investigating and testing and try to fix this.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] 1.4.5.1 – Unable to View or EditDid you solve this?
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Page embeddingThank you for reporting this. It will be fixed in the next update. In the meantime you can use the Custom url textbox to manually input the url to the page/post.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Shortcode Sticky list $user_id logged in usersTry changing the setting “Show entries in list to” and select “Entry creator”
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Shortcode Sticky list $user_id logged in usersSomething like this should work:
<form action="./" method="post"> <select name="user_id"> <?php $users = get_users(); foreach ($users as $user) { echo "<option value='" . $user->data->ID . "'>" . $user->data->display_name . "</option>"; } ?> </select> <input type="submit" value="show"> </form> <?php $user_id = (isset($_POST["user_id"])) ? $_POST["user_id"] : 1 ; echo do_shortcode( "[stickylist id='1' user='" . $user_id . "']"); echo do_shortcode( "[stickylist id='2' user='" . $user_id . "']"); echo do_shortcode( "[stickylist id='3' user='" . $user_id . "']"); ?>Put this in a template file for the page that you want to use it on. Make sure to change the id of the lists above to those that you want to show.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Shortcode Sticky list $user_id logged in usersYou could create a dropdown that lists all users and when changed it does a post request passing the user id of the selected user.
You could then add your lists like so:
$user_id = $_POST["user_id"]; echo do_shortcode( "[stickylist id='1' user='" . $user_id . "']"); echo do_shortcode( "[stickylist id='2' user='" . $user_id . "']"); echo do_shortcode( "[stickylist id='3' user='" . $user_id . "']");Forum: Plugins
In reply to: [Gravity Forms Sticky List] Auto Populate Form for EditingYes. You can try my other plugin called Sticky Form: https://sv.wordpress.org/plugins/gravity-forms-sticky-form/
Would you mind exporting your form and posting a link to it here so that I can import it and do some tests?
Forum: Plugins
In reply to: [Gravity Forms Sticky List] 1.4.5.1 – Unable to View or EditYou need to set the page where the FORM (not the list) is embedded so that Sticky List knows where to point the edits.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Deletes entries after submissionHello. Sorry for the late reply.
Are you saying that all entries belonging to a form are deleted when a users submits that form?
Would you mind exporting your form and posting a link to it here so that I can import it and do some tests? Also, please describe in detail how to reproduce this error.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] 1.4.5.1 – Unable to View or EditHello. In Sticky List settings for that form: make sure that you select the page/post where the FORM is embedded. The actual form is then used to view and/or edit the entries.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Shortcode Sticky list $user_id logged in users@frjoel on a per form basis?
Please describe your use case in more detail.
There are several ways to achieve what (I think) you are trying to do. One is in the shortcode (like in the example above), another is using a filter, a third is the custom capabilities.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] There was an error while saving your settingsHmm. I have never seen that before. Could you paste a screenshot of the error?
Also, out of interest, what is your use case with this on a contact form?