Viewing 5 replies - 16 through 20 (of 20 total)
  • Plugin Author miunosoft

    (@miunosoft)

    Okay. I assume your custom template is based on the Plain template.

    Try inserting this line in the loop in the template.

    <?php var_dump( $aTweet['user'] ); ?>

    It will list the user’s information in an array and find the correct index key for the item you want. In your case, followr’s count, the key may be something like followers_count. Then echo it like this.

    <?php echo $aTweet['user']['followers_count']; ?>
    Thread Starter linger668

    (@linger668)

    Thanks so much, it works!
    And can I get the follow button by the same way?

    Plugin Author miunosoft

    (@miunosoft)

    The follow button can be inserted with JavaScript.

    Find the div tag block with the fetch-tweets-follow-button class selector in the Plain template. Put the modified version of it in your template. Just don’t forget to define the variables used in the code.

    Thread Starter linger668

    (@linger668)

    Well, Almost done now! Thank you so much!

    Plugin Author miunosoft

    (@miunosoft)

    Glad to hear it and thanks for the review!

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘About display the image and description of user profile’ is closed to new replies.