Forums
Home / Plugin: Checkout Fields and File Upload for WooCommerce / Move the upload field below additional notes
(@thomasjarvisdesign)
6 months, 2 weeks ago
Can you provide me with a snippet of code or a line to edit in the plugin to relocate the upload box below the additional notes field?
The page I need help with: [log in to see the link]
(@brandonxlf)
4 months, 2 weeks ago
On line 112 of class-display.php, replacing $field_groups['order'] = array_merge( $processed, $field_groups['order'] ); with $field_groups['order'] = array_merge( $field_groups['order'], $processed ); should work.
class-display.php
$field_groups['order'] = array_merge( $processed, $field_groups['order'] );
$field_groups['order'] = array_merge( $field_groups['order'], $processed );