Using user submission textarea response as evidence
-
I noticed that the default credly mapping is to use the badge permalink as evidence. Given that this doesn’t appear to actually include any evidence unless it is the earner viewing the page while logged in I’ve been looking for a way to customise this. My current idea is to use the user submission text area response as evidence. From the developer documentation I’ve been able to make submissions public using:
add_filter('badgeos_public_submissions', 'set_public_badge_submission', 999, 1); function set_public_badge_submission($public){ $public = true; return $public; }
My question is how can I pass the url of the submission page as part of the badge evidence?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Using user submission textarea response as evidence’ is closed to new replies.