fried_eggz
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Reorder function with empty Unique-ID fieldYes. I have added a setting to the fields allowing you to set a field not to be populated on edit. The setting is located in the form editor, under the general tab, when editing a field.
However, i’m not sure this will allow the field to be populated by Unique-ID-field.
You can try it in a few hours when I push the update. Ill post back here when the new version is ready for download.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Unable To Find Custom CapabilitiesAhh, now I understand what you mean.
The capability is not selectable in a user role editor plugin. You have to manually add it to a user. You can either do this using you role editor plugin (there are many) or using code
$role = get_role( 'author' ); $role->add_cap( 'stickylist_edit_entries' );Forum: Plugins
In reply to: [Gravity Forms Sticky List] Link to specific entry?No problem! Ill update this thread tomorrow when the new version is available.
Also, if you like this plugin, please consider writing a short review.
Thank you
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Trouble Displaying PDFGlad to help. If you post the full link (you can remove you domain) that is displayed to download the pdf maybe I can add support for Fillable PDFs
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Trouble Displaying PDFThere is currently no support for the plugin Fillable PDFs. There is however support for Gravity PDF.
I have not tried Fillable PDFs. Is there a link that generates the PDF, if so, what does the link look like?
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Link to specific entry?I have implemented this but I wont be able to upload until tomorrow. If you need it now you can edit the file
class-sticky-list.phpand insert this on line 794:$_POST = array_merge($_POST, $_GET);When you update the plugin this will then be replaced with a setting.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Show specific users’ lists in one list?Did you solve this?
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Unable To Find Custom CapabilitiesHmm. I’ll look into this and post back.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Link to specific entry?Yes. But that would mean editing rye plugin files.
But maybe I can add a setting that allows you to enable GET request.
I’ll get back to you.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Show own entries in Ultimate Member Profile tabNo problem. If you like the plugin, please consisted writing a short review. Thank you.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Upgrade issueThat is very strange. Is this version 1.5?
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Show specific users’ lists in one list?Unfortunatly not. This is due to how the Gravity Forms API works. It is not possible query for entries made by multiple users.
However, you could just get all entries and then use a filter to remove the ones that do not match, something like this:
add_filter('filter_entries','hide_some_rows' ); function hide_some_rows($entries) { // Only show entries created by these user id's $show_only = array('1', '3', '5'); foreach ($entries as $entryKey => $entryValue) { if (!in_array($entryValue["created_by"], $show_only)) { unset($entries[$entryKey]); } } return $entries; }- This reply was modified 8 years, 3 months ago by fried_eggz.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Admin permissions problemThank you for this bug report. This has now been fixed and uploaded. Please download the latest version again and report back if it fixes you problem.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Show own entries in Ultimate Member Profile tabIn this line:
<?php echo do_shortcode( "[stickylist id='1' user='" . $user_id . "']"); ?>…you need to make sure that the vaiable $user_id holds the id of the currently viewed user.
Hi and thank you.
1) Yes, you can choose what columns (fields) should be visible in the list, and when you click “view” the complete form opens with all the fields visible.
2) Im not sure I understand exactly what you mean. Do you mean in the list or when clicking “view”?