newhope2018
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Sticky List] edit access permissionsHi,
Do not try to finging logic in stickylist – its very simple plug.
All entries are in 1 list. Every user after login – see 1 list (id=’1′), but not all entries. Each user see own entries (showto=’creator’). If U want to make more “filters” try to use plugin options (readmme.TXT).add_filter(‘filter_entries’,’hide_some_rows’ );
function hide_some_rows($entries) {
foreach ($entries as $entryKey => $entryValue) {
if ($entryValue[“1”] == “some-text”) {
unset($entries[$entryKey]);
}
}
return $entries;
}Again – this plugin shows entries to: (A) Only “creator”, (B) to all users.. (C) have option to show –> loggedin
Regards
Hi, im not expert, but i see U are writing wrong “shortcode”.
Im showing sticky list for current user by this code:
[stickylist id=”1″ user=”85″ showto=”creator”]
Regards
Hi #samboy59
It look’s like “.htaccess”
Did You resolved your problem?
Ok, simple and easy solution is plugin Gravitywp Count.
Thanks!
- This reply was modified 7 years, 6 months ago by newhope2018.