HEX
Server: nginx/1.27.1
System: Linux in-3 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
User: ivenus-clone (3297)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v4513/tepnot/public_html/wp-content/plugins/dokan-pro/templates/settings/social.php
<?php
/**
 * @since 2.2.2 Insert action before social settings form
 */
do_action( 'dokan_profile_settings_before_form', $current_user, $profile_info ); ?>

<form method="post" id="profile-form"  action="" class="dokan-form-horizontal"><?php ///settings-form ?>

    <?php wp_nonce_field( 'dokan_profile_settings_nonce' ); ?>

    <?php foreach( $social_fields as $key => $field ) { ?>
        <div class="dokan-form-group">
            <label class="dokan-w3 dokan-control-label"><?php echo $field['title']; ?></label>

            <div class="dokan-w5">
                <div class="dokan-form-group">
                    <div class="dokan-input-group">
                        <span class="dokan-input-group-addon"><i class="fab fa-<?php echo isset( $field['icon'] ) ? $field['icon'] : ''; ?>"></i></span>
                        <input id="settings[social][<?php echo $key; ?>]" value="<?php echo isset( $profile_info['social'][ $key ] ) ? esc_url( $profile_info['social'][ $key ] ) : ''; ?>" name="settings[social][<?php echo $key; ?>]" class="dokan-form-control" placeholder="http://" type="url">
                    </div>
                </div>
            </div>
        </div>
    <?php } ?>

    <?php
    /**
     * @since 2.2.2 Insert action on bottom social settings form
     */
    do_action( 'dokan_profile_settings_form_bottom', $current_user, $profile_info ); ?>

    <div class="dokan-form-group">
        <div class="dokan-w4 ajax_prev dokan-text-left" style="margin-left:24%;">
            <input type="submit" name="dokan_update_profile_settings" class="dokan-btn dokan-btn-danger dokan-btn-theme" value="<?php esc_attr_e( 'Update Settings', 'dokan' ); ?>">
        </div>
    </div>

</form>

<?php
/**
 * @since 2.2.2 Insert action after social settings form
 */
do_action( 'dokan_profile_settings_after_form', $current_user, $profile_info ); ?>
<!--settings updated content end-->