Hi,
your screenshots seems referred to Fabrik component, anyway also in Easy Profile I found same issue with php8.
To solve it follow these steps:
- Open file at /administrator/components/com_jsn/views/fields/tmpl/default.php
- At line 355 replace this code:
<input type="hidden" name="original_order_values" value="<?php echo implode($originalOrders, ','); ?>" />
with this
<input type="hidden" name="original_order_values" value="<?php if(is_array($originalOrders) && !empty($originalOrders)) echo implode($originalOrders, ','); ?>" />