I need to show/hide elements based on the users’ badge ownership. Unfortunately, the badge feature stops on page/post level. How can I realize the following?
If user has silver > then hide elementA and show elementB.
If user has gold or platinum badge > then hide elementA and show elementC.
Hey Amanda. This is what I thought would do the trick. But I failed miserable doing so. There are some posts in this forum which are trying to achieve the same. But after reading these posts I’m completely confused now, And non of the examples is working.
@kuklick No problem. I don’t have a running example right now but am happy to work through the code with you. Do you have enough to paste your attempt and we can go from there? I’ll also see if I can quickly set up a snippet that might be more useful than what you have found
Then in your front end, you will get your current member and pass it to your badge checking function. Depending on what it returns you can decide what to show/hide in the UI
Failed to process file ‘public/pages/nt3s6.js’. Access to backend script ‘backend/getBadges.js’ denied! Client-side scripts can only import web-modules (.jsw) from backend code context.
@kuklick I would start by dumping your member object to the console and see what’s going on. So right after this line: . then (( member ) => {
you can console.log(member) → publish → go to the front end and login and see what returns
So if you are successfully getting your memberID and badge ID back, where in the code is throwing your errors? Where does it think you are using member._id as an object?
I just checked my test site again and I am receiving no console errors using the code I shared above, so I’m not 100% sure what is different about your setup but you can look to see if there is more error information and address each part individually.
Then if following the errors doesn’t work I would break down the code and debug one step at a time. Comment out the code to get the badges and make sure your current member call isn’t getting any errors
Then in the backend, debug the file there by manually placing a member ID and running in the backend to see if that returns as expected
@kuklick Ah, I see so above that line console.log(member)
Then inspect the member object in your console and see what you need to point to that will retrieve your id. For me, it was _id which I would expect to be the same for you, but perhaps it isn’t. Once you know, you can change member._id to member.whateverItWants
@kuklick It’s expecting a value for the function to run. You can hardcode it in to test before you run
put a member ID from your site in the listMemberBadges function
@amandam It all seems ok and you say your code is running on your end. But it’s not running on my end. I don’t think more texting back and forth will fix my problem. Anyway, thanks for your time.
@amandam I tried your code on clean setup and it fails with the same errors. Given the fact that it runs on your side, there must be an issue in my environment. So I wrote a ticket.
@kuklick Please report back what the issue was once you know. I tested the code snippet I shared on my personal computer/account and my work machine and was able to get it running so I’m perplexed as well