Support

Account

Home Forums Front-end Issues Addon for Woocommerce My-Account page Reply To: Addon for Woocommerce My-Account page

  • I have modified form-edit-account.php with this script:

    <!-- Campi aggiuntivi -->
    <b><a href="edit-account">INFORMAZIONI AGGIUNTIVE</a></b>
    <?php acf_form_head(); ?>
    
    <?php
    $current_user_id = get_current_user_id();
        $options = array(
                    'post_id' => 'user_'.$current_user_id,
                    'fields' => array('piva','coduni','codfis','pec','datanas','cittanas','pronas','rdm','fax'),
                    'form' => true,
                    'instruction_placement' => 'label',
    				'submit_value' => __("SALVA INFORMAZIONI AGGIUNTIVE", 'acf'),
                );
        acf_form($options);
    ?>
    <!-- /Campi aggiuntivi -->

    In te “array” I have insert the name of my custom fields.