Can someone who knows coding take a 2 min look?

Hello friends, I want to add a button to the section indicated by the square below and redirect it to a page, just like the “delete membership info” text. How can I do this?

http://i.hizliresim.com/GpROXb.png

resmi eklemediniz sanırım

aww evet :smiley:

yardımcı olabilecek var mı?

wordpress mi blogger mı

wordpress abi

bu gösterdiğin hangi sayfa kodları verebilmen mümkünse iyi olur

usta bu userpro eklentisinin üyelik bilgileri sayfası muhtemelen bu olsa gerek;

`

>
<a href="#" class="userpro-close-popup"><?php _e('Close','userpro'); ?></a>

<div class="userpro-centered <?php if (isset($header_only)) { echo 'userpro-centered-header-only'; } ?>">

    <?php if ( userpro_get_option('lightbox') && userpro_get_option('profile_lightbox') ) { ?>
    <div class="userpro-profile-img" data-key="profilepicture"><a href="<?php echo $userpro->profile_photo_url($user_id); ?>" class="userpro-tip-fade lightview" data-lightview-caption="<?php echo $userpro->profile_photo_title( $user_id ); ?>" title="<?php _e('View member photo','userpro'); ?>"><?php echo get_avatar( $user_id, $profile_thumb_size ); ?></a></div>
    <?php } else { ?>
    <div class="userpro-profile-img" data-key="profilepicture"><a href="<?php echo $userpro->permalink($user_id); ?>" title="<?php _e('View Profile','userpro'); ?>"><?php echo get_avatar( $user_id, $profile_thumb_size ); ?></a></div>
    <?php } ?>
    <div class="userpro-profile-img-after">
        <div class="userpro-profile-name">
            <a href="<?php echo $userpro->permalink($user_id); ?>"><?php echo userpro_profile_data('display_name', $user_id); ?></a><?php echo userpro_show_badges( $user_id ); ?>
        </div>
        <?php do_action('userpro_after_profile_img' , $user_id); ?>
        <?php if ( userpro_can_edit_user( $user_id ) ) { ?>
        <div class="userpro-profile-img-btn">
            <?php if (isset($header_only)){ ?>
            <a href="<?php echo $userpro->permalink($user_id, 'edit'); ?>" class="userpro-button secondary"><?php _e('Edit Profile','userpro') ?></a>
            <?php } else { ?>
            <a href="#" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" data-template="edit" class="userpro-button secondary"><?php _e('Edit Profile','userpro'); ?></a>
            <?php } ?>
            <img src="<?php echo $userpro->skin_url(); ?>loading.gif" alt="" class="userpro-loading" />
        </div>
        <?php } ?>
    </div>
   
    <div class="userpro-profile-icons top">
        <?php if (isset($args['permalink'])) {
            userpro_logout_link( $user_id, $args['permalink'], $args['logout_redirect'] );
        } else {
            userpro_logout_link( $user_id );
        } ?>
    </div>
       
    <?php echo $userpro->show_social_bar( $args, $user_id, 'userpro-centered-icons' ); ?>

    <div class="userpro-clear"></div>
       
</div>

<?php if (!isset($header_only)) { ?>

<?php
// action hook after user header
if (!isset($args['disable_head_hooks'])){
    if (!isset($user_id)) $user_id = 0;
    $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
    do_action('userpro_after_profile_head', $hook_args);
}
?>

<div class="userpro-body">

    <?php do_action('userpro_pre_form_message'); ?>

    <form action="" method="post" data-action="<?php echo $template; ?>">
   
        <input type="hidden" name="user_id-<?php echo $i; ?>" id="user_id-<?php echo $i; ?>" value="<?php echo $user_id; ?>" />
       
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_before_fields', $hook_args);
        ?>
       
        <?php foreach( userpro_fields_group_by_template( $template, $args["{$template}_group"] ) as $key => $array ) { ?>
           
            <?php  if ($array) echo userpro_show_field( $key, $array, $i, $args, $user_id ) ?>
           
        <?php } ?>
       
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_after_fields', $hook_args);
        ?>
       
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_before_form_submit', $hook_args);
        ?>
       
        <?php if ( userpro_can_delete_user($user_id) || $userpro->request_verification($user_id) || isset( $args["{$template}_button_primary"] ) || isset( $args["{$template}_button_secondary"] ) ) { ?>
        <div class="userpro-field userpro-submit userpro-column">
           
            <?php if ( $userpro->request_verification($user_id) ) { ?>
            <input type="button" value="<?php _e('Request Verification','userpro'); ?>" class="popup-request_verify userpro-button secondary" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" />
            <?php } ?>
           
            <?php if ( userpro_can_delete_user($user_id) ) { ?>
            <input type="button" value="<?php _e('Delete Profile','userpro'); ?>" class="userpro-button red" data-template="delete" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" />
            <?php } ?>
           
            <?php if (isset($args["{$template}_button_primary"]) ) { ?>
            <input type="submit" value="<?php echo $args["{$template}_button_primary"]; ?>" class="userpro-button" />
            <?php } ?>
           
            <?php if (isset( $args["{$template}_button_secondary"] )) { ?>
            <input type="button" value="<?php echo $args["{$template}_button_secondary"]; ?>" class="userpro-button secondary" data-template="<?php echo $args["{$template}_button_action"]; ?>" />
            <?php } ?>

            <img src="<?php echo $userpro->skin_url(); ?>loading.gif" alt="" class="userpro-loading" />
            <div class="userpro-clear"></div>
           
        </div>
        <?php } ?>
   
    </form>

</div>

<?php } ?>

`

şöyle bir şey yapman mümkün mü “Üye Bilgilerini Sil” yazan butonu üstünde sağ tuş ögeyi denetle de çıkan pencereden butonun içinde olduğu divin adını yazarmısın

şöyle abi;

http://i.hizliresim.com/bgbAW8.png

Kodları düzenledim. diye yazı yazdım kodları içine oraya bakabilirsin. Yedek aldıktan sonra dene bakalım

`<div class=“userpro userpro-<?php echo $i; ?> userpro-id-<?php echo $user_id; ?> userpro-<?php echo $layout; ?>” <?php userpro_args_to_data( $args ); ?>>

<a href="#" class="userpro-close-popup"><?php _e('Close','userpro'); ?></a>

<div class="userpro-centered <?php if (isset($header_only)) { echo 'userpro-centered-header-only'; } ?>">

    <?php if ( userpro_get_option('lightbox') && userpro_get_option('profile_lightbox') ) { ?>
    <div class="userpro-profile-img" data-key="profilepicture"><a href="<?php echo $userpro->profile_photo_url($user_id); ?>" class="userpro-tip-fade lightview" data-lightview-caption="<?php echo $userpro->profile_photo_title( $user_id ); ?>" title="<?php _e('View member photo','userpro'); ?>"><?php echo get_avatar( $user_id, $profile_thumb_size ); ?></a></div>
    <?php } else { ?>
    <div class="userpro-profile-img" data-key="profilepicture"><a href="<?php echo $userpro->permalink($user_id); ?>" title="<?php _e('View Profile','userpro'); ?>"><?php echo get_avatar( $user_id, $profile_thumb_size ); ?></a></div>
    <?php } ?>
    <div class="userpro-profile-img-after">
        <div class="userpro-profile-name">
            <a href="<?php echo $userpro->permalink($user_id); ?>"><?php echo userpro_profile_data('display_name', $user_id); ?></a><?php echo userpro_show_badges( $user_id ); ?>
        </div>
        <?php do_action('userpro_after_profile_img' , $user_id); ?>
        <?php if ( userpro_can_edit_user( $user_id ) ) { ?>
        <div class="userpro-profile-img-btn">
            <?php if (isset($header_only)){ ?>
            <a href="<?php echo $userpro->permalink($user_id, 'edit'); ?>" class="userpro-button secondary"><?php _e('Edit Profile','userpro') ?></a>
            <?php } else { ?>
            <a href="#" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" data-template="edit" class="userpro-button secondary"><?php _e('Edit Profile','userpro'); ?></a>
            <?php } ?>
            <img src="<?php echo $userpro->skin_url(); ?>loading.gif" alt="" class="userpro-loading" />
        </div>
        <?php } ?>
    </div>
  
    <div class="userpro-profile-icons top">
        <?php if (isset($args['permalink'])) {
            userpro_logout_link( $user_id, $args['permalink'], $args['logout_redirect'] );
        } else {
            userpro_logout_link( $user_id );
        } ?>
    </div>
      
    <?php echo $userpro->show_social_bar( $args, $user_id, 'userpro-centered-icons' ); ?>

    <div class="userpro-clear"></div>
      
</div>

<?php if (!isset($header_only)) { ?>

<?php
// action hook after user header
if (!isset($args['disable_head_hooks'])){
    if (!isset($user_id)) $user_id = 0;
    $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
    do_action('userpro_after_profile_head', $hook_args);
}
?>

<div class="userpro-body">

    <?php do_action('userpro_pre_form_message'); ?>

    <form action="" method="post" data-action="<?php echo $template; ?>">
  
        <input type="hidden" name="user_id-<?php echo $i; ?>" id="user_id-<?php echo $i; ?>" value="<?php echo $user_id; ?>" />
      
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_before_fields', $hook_args);
        ?>
      
        <?php foreach( userpro_fields_group_by_template( $template, $args["{$template}_group"] ) as $key => $array ) { ?>
          
            <?php  if ($array) echo userpro_show_field( $key, $array, $i, $args, $user_id ) ?>
          
        <?php } ?>
      
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_after_fields', $hook_args);
        ?>
      
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_before_form_submit', $hook_args);
        ?>
      
        <?php if ( userpro_can_delete_user($user_id) || $userpro->request_verification($user_id) || isset( $args["{$template}_button_primary"] ) || isset( $args["{$template}_button_secondary"] ) ) { ?>
        <div class="userpro-field userpro-submit userpro-column">
          
            <?php if ( $userpro->request_verification($user_id) ) { ?>
            <input type="button" value="<?php _e('Request Verification','userpro'); ?>" class="popup-request_verify userpro-button secondary" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" />
            <?php } ?>
          
            <?php if ( userpro_can_delete_user($user_id) ) { ?>
            <input type="button" value="<?php _e('Delete Profile','userpro'); ?>" class="userpro-button red" data-template="delete" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" />
            <?php } ?>
           
            <!-- Buraya diğer buton eklendi-->
            <input type="button" value="Diğer buton" class="userpro-button red" style="float:right;"/>
            <div style="clear:both;width:100%;height:1px"></div>
            <!-- Buraya diğer buton eklendi-->
           
            <?php if (isset($args["{$template}_button_primary"]) ) { ?>
            <input type="submit" value="<?php echo $args["{$template}_button_primary"]; ?>" class="userpro-button" />
            <?php } ?>
          
            <?php if (isset( $args["{$template}_button_secondary"] )) { ?>
            <input type="button" value="<?php echo $args["{$template}_button_secondary"]; ?>" class="userpro-button secondary" data-template="<?php echo $args["{$template}_button_action"]; ?>" />
            <?php } ?>

            <img src="<?php echo $userpro->skin_url(); ?>loading.gif" alt="" class="userpro-loading" />
            <div class="userpro-clear"></div>
          
        </div>
        <?php } ?>
  
    </form>

</div>

<?php } ?>

`

@Sanalgezgin57 abi buton oldu fakat sayfada aşağıdaki gibi kayama-bozulma var.

http://i.hizliresim.com/ZAdg8V.png

şu kodu silebilirmisin

hala aynı bir değişiklik oladı

<!-- Buraya diğer buton eklendi--> <input type="button" value="Diğer buton" class="userpro-button red" style="margin-left:200px;"/> <!-- Buraya diğer buton eklendi-->

bu kodu eski kod ile değiştirmisin

yalnızca aşağıdaki gibi yakınlaştı diğer butona;

http://i.hizliresim.com/7VvmEl.png

kodları orjinal haline çevirip teamviewer bağlantısı verirmisin istersen böyle olmayacak sanırım

pardon görmedim bilgileri

kodları tekrar yedek ile değiştirdim, eğer meşgulseniz sizi daha fazla oyalamiyim

sorun değil tekrar düzenledim deneyebilirmisin.
`<div class=“userpro userpro-<?php echo $i; ?> userpro-id-<?php echo $user_id; ?> userpro-<?php echo $layout; ?>” <?php userpro_args_to_data( $args ); ?>>

<a href="#" class="userpro-close-popup"><?php _e('Close','userpro'); ?></a>

<div class="userpro-centered <?php if (isset($header_only)) { echo 'userpro-centered-header-only'; } ?>">

    <?php if ( userpro_get_option('lightbox') && userpro_get_option('profile_lightbox') ) { ?>
    <div class="userpro-profile-img" data-key="profilepicture"><a href="<?php echo $userpro->profile_photo_url($user_id); ?>" class="userpro-tip-fade lightview" data-lightview-caption="<?php echo $userpro->profile_photo_title( $user_id ); ?>" title="<?php _e('View member photo','userpro'); ?>"><?php echo get_avatar( $user_id, $profile_thumb_size ); ?></a></div>
    <?php } else { ?>
    <div class="userpro-profile-img" data-key="profilepicture"><a href="<?php echo $userpro->permalink($user_id); ?>" title="<?php _e('View Profile','userpro'); ?>"><?php echo get_avatar( $user_id, $profile_thumb_size ); ?></a></div>
    <?php } ?>
    <div class="userpro-profile-img-after">
        <div class="userpro-profile-name">
            <a href="<?php echo $userpro->permalink($user_id); ?>"><?php echo userpro_profile_data('display_name', $user_id); ?></a><?php echo userpro_show_badges( $user_id ); ?>
        </div>
        <?php do_action('userpro_after_profile_img' , $user_id); ?>
        <?php if ( userpro_can_edit_user( $user_id ) ) { ?>
        <div class="userpro-profile-img-btn">
            <?php if (isset($header_only)){ ?>
            <a href="<?php echo $userpro->permalink($user_id, 'edit'); ?>" class="userpro-button secondary"><?php _e('Edit Profile','userpro') ?></a>
            <?php } else { ?>
            <a href="#" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" data-template="edit" class="userpro-button secondary"><?php _e('Edit Profile','userpro'); ?></a>
            <?php } ?>
            <img src="<?php echo $userpro->skin_url(); ?>loading.gif" alt="" class="userpro-loading" />
        </div>
        <?php } ?>
    </div>
 
    <div class="userpro-profile-icons top">
        <?php if (isset($args['permalink'])) {
            userpro_logout_link( $user_id, $args['permalink'], $args['logout_redirect'] );
        } else {
            userpro_logout_link( $user_id );
        } ?>
    </div>
     
    <?php echo $userpro->show_social_bar( $args, $user_id, 'userpro-centered-icons' ); ?>

    <div class="userpro-clear"></div>
     
</div>

<?php if (!isset($header_only)) { ?>

<?php
// action hook after user header
if (!isset($args['disable_head_hooks'])){
    if (!isset($user_id)) $user_id = 0;
    $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
    do_action('userpro_after_profile_head', $hook_args);
}
?>

<div class="userpro-body">

    <?php do_action('userpro_pre_form_message'); ?>

    <form action="" method="post" data-action="<?php echo $template; ?>">
 
        <input type="hidden" name="user_id-<?php echo $i; ?>" id="user_id-<?php echo $i; ?>" value="<?php echo $user_id; ?>" />
     
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_before_fields', $hook_args);
        ?>
     
        <?php foreach( userpro_fields_group_by_template( $template, $args["{$template}_group"] ) as $key => $array ) { ?>
         
            <?php  if ($array) echo userpro_show_field( $key, $array, $i, $args, $user_id ) ?>
         
        <?php } ?>
     
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_after_fields', $hook_args);
        ?>
     
        <?php // Hook into fields $args, $user_id
        if (!isset($user_id)) $user_id = 0;
        $hook_args = array_merge($args, array('user_id' => $user_id, 'unique_id' => $i));
        do_action('userpro_before_form_submit', $hook_args);
        ?>
     
        <?php if ( userpro_can_delete_user($user_id) || $userpro->request_verification($user_id) || isset( $args["{$template}_button_primary"] ) || isset( $args["{$template}_button_secondary"] ) ) { ?>
        <div class="userpro-field userpro-submit userpro-column">
         
            <?php if ( $userpro->request_verification($user_id) ) { ?>
            <input type="button" value="<?php _e('Request Verification','userpro'); ?>" class="popup-request_verify userpro-button secondary" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" />
            <?php } ?>
         
            <?php if ( userpro_can_delete_user($user_id) ) { ?>
            <input type="button" value="<?php _e('Delete Profile','userpro'); ?>" class="userpro-button red" data-template="delete" data-up_username="<?php echo $userpro->id_to_member($user_id); ?>" />
            <?php } ?>
          
            <input type="button" value="Diğer buton" class="userpro-button red" style="float:right">
          
            <?php if (isset($args["{$template}_button_primary"]) ) { ?>
            <input type="submit" value="<?php echo $args["{$template}_button_primary"]; ?>" class="userpro-button" />
            <?php } ?>
         
            <?php if (isset( $args["{$template}_button_secondary"] )) { ?>
            <input type="button" value="<?php echo $args["{$template}_button_secondary"]; ?>" class="userpro-button secondary" data-template="<?php echo $args["{$template}_button_action"]; ?>" />
            <?php } ?>

            <img src="<?php echo $userpro->skin_url(); ?>loading.gif" alt="" class="userpro-loading" />
            <div class="userpro-clear"></div>
         
        </div>
        <?php } ?>
 
    </form>

</div>

<?php } ?>

`