*

miba

  • **
  • 18 posts
[SOLVED] How can I change name to username in intim.php
« on: April 01, 2018, 02:40:35 AM »
hello I added username at the registration and changed in user detail page from name to username.
but i have problem to change in item.php i tried with the following code
Code: [Select]
<?php $user User::newInstance()->findByPrimaryKeyosc_item_user_id() ); echo $user['s_name']; ?>but do not change it
can you help me
« Last Edit: April 02, 2018, 01:39:07 PM by miba »
The First Step to Realizing Your Dreams is Hard Work, but Work Hard Because You Want to, Not Because You Have to, and you will be successful

*

MB Themes

Re: How can I change name to username in intim.php
« Reply #1 on: April 01, 2018, 12:09:38 PM »
s_username?
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

miba

  • **
  • 18 posts
Re: How can I change name to username in intim.php
« Reply #2 on: April 02, 2018, 04:24:10 AM »
Thanks for the quick help
i have now changed in the file "item.php" the code
from
Code: [Select]
<?php if(osc_item_user_id() <> and osc_item_user_id() <> '') { ?>
                    <a href="<?php echo osc_user_public_profile_url(osc_item_user_id()); ?>" title="<?php echo osc_esc_html(__('Check profile of this user''zara')); ?>">
                      <?php echo $c_name?>
                    </a>
                  <?php } else { ?>
                    <?php echo $c_name?>
                  <?php ?>

to
Code: [Select]
<?php if(osc_item_user_id() <> and osc_item_user_id() <> '') { ?>
                    <a href="<?php echo osc_user_public_profile_url(osc_item_user_id()); ?>" title="<?php echo osc_esc_html(__('Check profile of this user''zara')); ?>">
                      <?php $user User::newInstance()->findByPrimaryKeyosc_item_user_id() ); echo $user['s_username'];  ?>
                    </a>
                  <?php } else { ?>
                    <?php $user User::newInstance()->findByPrimaryKeyosc_item_user_id() ); echo $user['s_username'];  ?>
                  <?php ?>

I hope the change is correctly done
The First Step to Realizing Your Dreams is Hard Work, but Work Hard Because You Want to, Not Because You Have to, and you will be successful

*

MB Themes

Re: How can I change name to username in intim.php
« Reply #3 on: April 02, 2018, 12:52:05 PM »
Seems it is correct.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

miba

  • **
  • 18 posts
Re: [SOLVED] How can I change name to username in intim.php
« Reply #4 on: April 02, 2018, 01:39:58 PM »
Thank you
The First Step to Realizing Your Dreams is Hard Work, but Work Hard Because You Want to, Not Because You Have to, and you will be successful