How to omit adcepts in BPTO for NPDs?


If you want to show multiple NPDs in one adcept you could do so using our customisation tool. Follow these two steps:

  1. Add the following code in the customisation interface of the adcepts you wish to hide. Turn on the code view in the adcept editor “</>” and add the following code: <p><span class="dropMe">[TO BE HIDDEN]</span></p>
Hide adcept
  1. In the experiment customisation dialog add the following code.
<script>
    $(function() {
        $(".dropMe").closest(".frame").remove();
    });
</script>
Hide adcept