I’ve been able to understand that I have to change the structure of single-badges.php (if you do not have it, just clone che single.php page).
But I do not understand how to change the structure of the page, if I remove the function the_content() I do not see any information about the badge…
Thanks in advance!
as Andrea managed to point out, We don’t really provide any full templates, like you’re potentially used to from say BuddyPress. Since achievements are just post types, the template hierarchy applies to them as well. For instance, say you have the “Badges” post type. It’s going to look for archives-badges.php first and if that’s not found, it will fall back to just archives.php. Same thing is going to apply with single achievements. Once again using “Badges” for the example, single-badges.php should be selected first before single.php
Once you have the more specific template files available, you can start customizing those to your needs. If I recall correctly, we do a lot with the the_content filter, but not always.