Split: Login& register don't work after update

This topic contains 1 reply, has 2 voices, and was last updated by  Giri 8 years, 8 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #55036

    moeg35
    Buyer
    Post count: 18

    The new update fixed it.

    for the next update can you fix this also.
    whoop-userinfo-widget.php the Friends and review have the same count

    i fixed it by doing this

    Repalce This

    
    
    
     <li class="whoop-review-count">
                                        <i class="fa fa-star"></i>
                                        <?php //$count = geodir_get_review_count_by_user_id($current_user->ID );
                                        $count = whoop_get_friend_count_for_user($current_user->ID);
                                        if($count) {
                                            echo $count;
                                        } else {
                                            echo "0";
                                        }?>
    

    With This

    
    
    <li class="whoop-review-count">
                                        <i class="fa fa-star"></i>
                                        <?php $count = geodir_get_review_count_by_user_id($current_user->ID );
                                        if($count) {
                                            echo $count;
                                        } else {
                                            echo "0";
                                        }?>

    And it worked

    #55107

    Giri
    Expired Member
    Post count: 3155

    Fixed. Thanks for reporting

Viewing 2 posts - 1 through 2 (of 2 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket