fdittmar
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Menu Editor] accessProtection issue preventing bbpress forumsHmm, I did both tests/activities and not as clear-cut as my two coding AI’s interpreted the sql & error logs first time around. I think your experience and suspicion about ai error interpretation might be right as I see something working with AME off but the sql values and UI changes are not consistent. I think it points away from AME.
Don’t want to take up more of your time – I’ll do a bit more testing and get some non-electronic help with this after the weekend and revert if needed.
Thank you for the quick replies and straight interpretations. 5*
Forum: Plugins
In reply to: [Admin Menu Editor] accessProtection issue preventing bbpress forumsOK, I understand that comment and will retest with AME off totally.
Both
_ame_cpe_post_policy = {"accessProtection":{"active":"default"}}and
_ame_cpe_post_policy = {"accessProtection":{"active":"replace"}}are the result of :
— Master forum (works – shows Private)
SELECT meta_key, meta_value
FROM wptg_postmeta
WHERE post_id = 88582
AND meta_key LIKE ‘%ame%’
ORDER BY meta_key;— Subforum (doesn’t work – shows Public)
SELECT meta_key, meta_value
FROM wptg_postmeta
WHERE post_id = 88583
AND meta_key LIKE ‘%ame%’
ORDER BY meta_key;Forum: Plugins
In reply to: [Admin Menu Editor] accessProtection issue preventing bbpress forumsHi, thanks for the quick response. I’m not a coder so asked various coding tools to help with analysis and troubleshooting when my attempt did not work. I try to summarise from that below:
You’re right that
update_post_meta()itself works fine – the meta field_bbp_visibilityis being set to ‘private’ correctly in the database.The issue is that AME’s Content Permissions appears to override bbPress’s native visibility in the UI, regardless of what
_bbp_visibilityis set to.Here’s what we found:
- The
_bbp_visibilityfield is set correctly by our script:- Both working and non-working forums have
_bbp_visibility = 'private'in the database
- Both working and non-working forums have
- But the UI displays different visibility based on AME’s
_ame_cpe_post_policyfield:- Master forum with
{"accessProtection":{"active":"default"}}→ Shows “Private” in UI ✓ - Subforum with
{"accessProtection":{"active":"replace"}}→ Shows “Public” in UI ✗
- Master forum with
- When we manually change the subforum visibility dropdown from Public → Private and click Update:
- The forum then displays correctly as “Private”
- But
_bbp_visibilitywas already ‘private’ before this change - The only thing that seems to change is how AME handles it
Our question: Is there a way to programmatically set the AME Content Permissions to respect bbPress’s native visibility settings (like the “default” mode does), or to exclude forums from AME Content Permissions entirely?
We tried setting
_ame_cpe_post_policydirectly to{"accessProtection":{"active":"default"}}but this caused an error:Unknown access protection tag: defaultTest conducted: Yes, we can confirm that with AME deactivated, the forums display their visibility correctly based solely on the
_bbp_visibilitymeta field.Our use case: We’re bulk-creating forum structures programmatically (master forum + 8 subforums per course) and need them to respect bbPress visibility settings without manual intervention.
Any guidance would be appreciated!
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Retrieving more than 1 recording via shortcodeI just checked and 4.6.0 does NOT fix the issue with retrieving a recording list with more than 1 entry.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Retrieving more than 1 recording via shortcodeI emailed Friday. Thank you.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Zoom JWT reminder in WP admin backendI had done that but I hadn’t deleted the old JWT keys immediately… only doing so removes the notice. Thanks
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Flushing cache via shortcodeUnderstood, thanks. I was using FLUSH as my listings were regularly lost in site caching somewhere…
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Modifying shortcode output designWorks nicely. I’m very grateful and am hopefully learning myself by doing this.
Great support.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Zoom JWT reminder in WP admin backendLooks like running the conversion isn’t enough… need to tick a box to also delete the old credentials (didn’t like doing that as there was no testing other than connection at that point)
Thanks
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Adding Flush-Cache to shortcode parametersExcellent but I’m on 3.8.3 with WP 5.4.2 and 3.8.8 does say it needs WP 5.5 or newer so I need to await my next update window before I can test.
Thanks in advance… I’m sure it’ll work for me.Forum: Plugins
In reply to: [Video Conferencing with Zoom] Recording not showing – ‘Check for latest’I now have recordings missing from as far back as last Tuesday… something is very broken.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Language strings – not using LocoThanks for the idea, @digamberpradhan
Difficult for me to use due to the narrow language / usage on our school pages but may help others with simpler setups / dictionaries.
The Mailster setup is really neat – plugin specific with very specific placeholders which allow industry / use-case specific lingo and no performance overhead.Keep up the good work.
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Recording not showing – ‘Check for latest’Just to give you an idea on the issue timing. One school class recording (1h long) yesterday took Zoom less than 30min to render
>zoom email: Your cloud recording is now available. 31min after recording endOn the page with the shortcode now (19 hours after recording available on zoom):
>No recordings found. Check for latestForum: Plugins
In reply to: [Video Conferencing with Zoom] Recording not showing – ‘Check for latest’Hi, @digamberpradhan
using: [zoom_recordings_by_meeting meeting_id=”xxxx” downloadable=”no”]
Forum: Plugins
In reply to: [Video Conferencing with Zoom] Recording not showing – ‘Check for latest’Deepen,
I’ve now observed it multiple times over the last few days on many different school pages.
The good news is that the recording eventually shows so it seems to be a timing issue.
Yesterday, one recording took 15 hours to show up in the shortcode page (after it was available in the zoom cloud ui). At the same time, another recording only took 30min.I assume this is not plugin related but a Zoom (api) issue…?
Thanks
- The