*

Loma

  • ***
  • 69 posts
  • Loma
Anonymous comment in item page
« on: November 19, 2017, 10:14:18 AM »
my user have been put their  name  in comment form but after comment appear it show Anonymous

why it not the Name that user put ?

*

MB Themes

Re: Anonymous comment in item page
« Reply #1 on: November 19, 2017, 10:35:41 AM »
@Loma
In item.php replace comment section with following code, I think there used to be small bug:
Code: [Select]
        <!-- Comments-->
        <div id="more-info" class="comments round3 i-shadow is_detail">
          <?php if( osc_comments_enabled()) { ?>
            <div class="item-comments">
              <h2 class="sc-click">
                <span><?php _e('Comments''veronika'); ?></span>
              </h2>


              <!-- LIST OF COMMENTS -->
              <div id="comments" class="sc-block">
                <div class="comments_list">
                  <div class="comment-wrap comment-empty">
                    <div class="ins">
                      <div class="comment-image tr1">
                        <img class="tr1" src="<?php echo osc_current_web_theme_url('images/profile-support.png'); ?>"/>
                      </div>

                      <div class="comment<?php if( osc_reg_user_post_comments () && !osc_is_web_user_logged_in() ) { ?> two-lines<?php ?>">
                        <div class="body">
                          <span><?php _e('Question? Need more information? Want to ask question? Add new comment...''veronika'); ?></span>

                          <?php if( osc_reg_user_post_comments () && !osc_is_web_user_logged_in() ) { ?>
                            <a class="log" href="<?php echo osc_register_account_url(); ?>"><?php _e('You need to log in first.''veronika'); ?></a>
                          <?php ?>
                        </div>
                      </div>
                    </div>
                  </div>

                  <?php $class 'even'?>
                  <?php $i 1?>
                  <?php while ( osc_has_item_comments() ) { ?>
                    <div class="comment-wrap <?php echo $class?>">
                      <div class="ins">
                        <div class="comment-image">
                          <?php if(function_exists('profile_picture_show')) { ?>
                            <?php profile_picture_show(100'comment'100$i); ?>
                          <?php } else { ?>
                            <img src="<?php echo osc_current_web_theme_url(); ?>images/profile-u<?php echo $i?>.png"/>
                          <?php ?>
                        </div>

                        <div class="comment">
                          <h4><span class="bold"><?php if(osc_comment_title() == '') { _e('Review''veronika'); } else { echo osc_comment_title(); } ?></span> <?php _e('by''veronika') ; ?> <?php if(osc_comment_author_name() == '') { _e('Anonymous''veronika'); } else { echo osc_comment_author_name(); } ?>:</h4>
                          <div class="body"><?php echo osc_comment_body() ; ?></div>

                          <?php if ( osc_comment_user_id() && (osc_comment_user_id() == osc_logged_user_id()) ) { ?>
                            <a rel="nofollow" class="remove" href="<?php echo osc_delete_comment_url(); ?>" title="<?php echo osc_esc_html(__('Delete your comment''veronika')); ?>">
                              <span class="not767"><?php _e('Delete''veronika'); ?></span>
                              <span class="is767"><i class="fa fa-trash-o"></i></span>
                            </a>
                          <?php ?>
                        </div>
                      </div>
                    </div>

                    <div class="clear"></div>
                    <?php $class = ($class == 'even') ? 'odd' 'even'?>

                    <?php
                      $i
++;
                      
$i $i 1;
                    
?>

                  <?php ?>

                  <div class="pagination"><?php echo osc_comments_pagination(); ?></div>
                </div>
              </div>

              <div class="care">
                <div class="text"><?php _e('Ask questions related to this listing only.''veronika'); ?></div>
                <div class="text"><?php _e('Comments are moderated.''veronika'); ?></div>
              </div>

              <?php if( osc_reg_user_post_comments () && osc_is_web_user_logged_in() || !osc_reg_user_post_comments() ) { ?>
                <a class="add-com btn tr1 round3" href="<?php echo osc_item_send_friend_url(); ?>"><i class="fa fa-commenting"></i><?php _e('Add new comment''veronika'); ?></a>
              <?php ?>
            </div>
          <?php ?>
        </div>
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Loma

  • ***
  • 69 posts
  • Loma
Re: Anonymous comment in item page (solved)
« Reply #2 on: November 20, 2017, 12:28:14 PM »
Thank you @MB Themes