Clare Parkinson
Forum Replies Created
-
Thank you for your quick response!
The fulltext search behavior I see doesn’t match what you say – if I type the entire page title e.g. “Team” it is still not found. I can’t get it to match any page titles. Screenshot: https://dev-ssi-pfas.pantheonsite.io/wp-content/uploads/2025/06/team-no-items-found-Screenshot-2025-06-19-at-8.13.36 AM.png
Anyway, the filter you sent solves the problem. With that filter the Parent Page autocomplete does a partial match on page title and works as I expected.
Thank you! I’m marking this resolved.-Clare
I figured out a way around this – I’m going to set up a universal profile form for all the roles, and then use conditional logic in that form to show/hide the various fields that only pertain to certain roles.
The users will have access to every field, but they can just ignore the fields that aren’t relevant for them.
Forum: Plugins
In reply to: [Plausible Analytics] Can file downloads be tracked with this plugin?Thanks for sending that documentation – I was able to set it up easily and it looks like it’s working. Thank you!
Forum: Plugins
In reply to: [Menu In Post] PHP 8 deprecation noticesI also saw those warnings on upgrading to PHP 8, and I confirm that the update to 1.1.9 fixes them. Thank you!
Just a note that I had the same issue, and your update fixed it. Thanks for getting that fix out so quickly!
-Clare
Forum: Plugins
In reply to: [Media Library Assistant] Is it possible to query media by author’s role?Okay, that makes sense to me. I’m familiar with the old “user level” field.
Thanks so much for your detailed reply! I appreciate the time you took to type this all out. I’ll give it a try.
cheers,
Clare
Forum: Reviews
In reply to: [GS Only PDF Preview] works perfectly, automatically generates PDF thumbnailThe site is hosted on Pantheon. It’s PHP 7.3. ImageMagick, Imagick, and Ghostscript are all installed. There seems to be a problem with ImageMagick not being called from WP – it started happening in mid-March 2021.
Forum: Reviews
In reply to: [Astra] My go-to themeWell, I somehow left a review for a plugin on the review for Astra page. But I do think Astra is great, so I edited the review to be relevant.
Forum: Reviews
In reply to: [Spectra Legacy – Gutenberg Blocks] lots of hooks for customizationthanks for the update!
Update: you can customize the Post Grid block with this hook: uagb_single_post_before_meta_grid to make it display any/all taxonomies you want. You’ll need some CSS to hide the default single category display, and possibly some logic to have this happen only on certain pages or with certain settings.
The NF “submit” action on an email form closes the popup before the success message is displayed. I ran another test…
testing with Ninja Forms Version 3.2.21 and PopupMaker versions as noted below.
testing a simple email form popup, using Default Theme, which has overlay set to 60% opacityPopupMaker version 1.6.6 – works perfectly
– form displays correctly
– overlay appears
– when form is submitted, the popup window reloads and the success message appears in the popup window. I click to close the popup.PopupMaker 1.7.13, 1.7.15, and 1.7.16
– form displays correctly
– no overlay of any kind appears
– when the form is submitted, the window closes. No success message appears. If I click the “message” popup button again, the popup appears with the success message displayed.And just found this: on the Ninja Forms I display in popup via shortcode, the confirmation message no longer appears. Normally you’d click “submit”, then the popup shows the confirmation message, then you click the X to close. Now, when the user clicks submit, the entire popup disappears.
Maybe this is a problem with JS in general?
Update: I found the problem. I forgot that I had to edit to specify my custom post type in wpfp-page-template.php. Everything is fine now!
Forum: Plugins
In reply to: [Favorites] Favorites list doesn't display by custom post typeVersion 1.2.3 fixed this. Thanks!
Forum: Plugins
In reply to: [Favorites] Favorites list doesn't display by custom post typeI think I figured out what’s wrong (I was using the wrong name for the post types, but that wasn’t the real problem) I want to create two lists of favorites on the same page:
[user_favorites user_id=”” include_links=”true” site_id=”” post_types=”brand-listing” include_buttons=”false”]
[user_favorites user_id=”” include_links=”true” site_id=”” post_types=”product” include_buttons=”false”]
Both lists are generated with markup
<ul class="favorites-list, and the js is writing the same elements to each. That is, post type B is getting appended to the post type A list, and post type A is getting appended to the post type B list.I guess a solution would be to give a unique css selector to each lists of favorites. I’ll see what I can do with my limited css/js skills.