I found the solution
in the file item-sidebar.php
Replace:
<?php if( osc_item_user_id() != null ) { ?>
<p class="name"><?php _e('Name', 'bender') ?>: <a href="<?php echo osc_user_public_profile_url( osc_item_user_id() ); ?>" ><?php echo osc_item_contact_name(); ?></a></p>
<?php } else { ?>
<p class="name"><?php printf(__('Name: %s', 'bender'), osc_item_contact_name()); ?></p>
<?php } ?>
By :
<?php if( osc_item_user_id() != null ) { ?>
<p class="name"><?php _e('Name', 'bender') ?>: <?php echo osc_item_contact_name(); ?></a></p>
<p class=""><a href="<?php echo osc_user_public_profile_url( osc_item_user_id() ); ?>" ><?php _e('See all ads', 'bender'); ?></a></p>
<?php } else { ?>
<p class="name"><?php printf(__('Name: %s', 'bender'), osc_item_contact_name()); ?></p>
<?php } ?>
it is for the theme "Bender" adapt it for your theme