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:
- 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>

- In the experiment customisation dialog add the following code.
<script>
$(function() {
$(".dropMe").closest(".frame").remove();
});
</script>
