Comment to 'Edit "Who Can Post" selection field'
  • I still shows up. I think it's different. 6 doesn't remove it. It's in the list with "group", "friend", "space" in the apps like albums. In the timeline, it says "persons" instead of "friend". 6 is for "selected friends".

    Here's two more screenshots.

    • If you need to hide the freidsna dn persons variants then the code in the RAW block will have the next view (but the "Asynchronous Mode" for the "Create Post" block should be disabled):

      <script language="javascript">
      const aVars = ['PERSONS', 'FRIENDS'];
      aVars.forEach(reduce_vars);
      function reduce_vars (sItem)
      {
      $(".sys-privacy-group").children().remove('optgroup[label=' + sItem + ']');
      }
      </script>