Problem:
The Avada theme options section available when editing Content Templates or Layouts seems to be missing the Avada post meta section, so it can only be hidden with CSS.
Solution:
That's an omission, a request has been made to update the Avada theme options configuration file to include it.
Problem:
Client uses some custom code to duplicate posts, which works correctly except for checkboxes fields. How to handle duplicating checkboxes fields onto the new posts?
Solution:
Checkboxes fields are stored as serialized arrays in wp_postmeta, and there is an anomaly with WordPress in how the value is returned by get_post_meta, depending on whether you retrieve the value of the field directly (by specifying the key), where it is returned as an array, or whether you retrieve the value of all fields at once (by not specifying a key), where it is returned as a string.