• Resolved Anonymous User 15521305

    (@anonymized-15521305)


    Hi, before I give 5 stars.

    1) how can I increase the size of avatar in widgets?
    2) In widget user avatar and username are unclickable. How can I make it clickable and when clicked, it directs to user profile? The description,too. For example “comment on post” when clicked, it directs to the comment.
    3) I award 50 points to author of comment and author of post. But when author of post comments on his own post, he gets 100 points. How can I prevent author of post to receive points when he comments on his own post?

    Thank you. Sorry for many questions.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author J.D. Grimes

    (@jdgrimes)

    Hi @topsan123,

    1) There is not an option for this built in, but you can change it using CSS:

    
    .widget .wordpoints-points-logs .avatar,
    .widget .wordpoints-points-top-users .avatar {
      width: 50px;
    }
    

    You can paste that in the “Additional CSS” section of the Customizer (“Customize link in the tool bar). You can change it from 50 pixels to be bigger or smaller.

    2) Do you mean the user’s profile on the back end, or are you using a plugin that adds user profiles on the front end?

    3) Good question. I will see about adding that option in the next version of the plugin.

    Thread Starter Anonymous User 15521305

    (@anonymized-15521305)

    Hi, thanks for your quick reply.

    1) In fact, I already tried adding css to adjust the size, but the problem is the avatar becomes blurred after increasing the size.I have one plugin having the same case but the author of the plugin has the option to adjust the size in a php file in the plugin folder, the avatar is not blurred. It would be great if you have the option to do this without blurring the image.

    2) I use BuddyPress and of course users have profiles. I create one page and add the shortcodes of Top 5 Users and Points Logs there. Everything there is unclickable. When I view this page, it Would be great if I can click on the user avatar and that brings me to his profile directly. Also “Comment on Post” under the Description section of the Points Logs table is unclickable. It would be great if I can do the same thing. When clicked on the phrase, it directs to the the post where the user adds a comment. With this option, I can keep track of or view where users add comments.

    3) Please add this option. This is not fair when author of post comments on his own post and gets such points.

    Plugin Author J.D. Grimes

    (@jdgrimes)

    Hi, sorry for the delayed reply.

    1) Ah, right. I will make it possible to alter the avatar size in a similar way, in the next version of the plugin.

    2) There is an extension for the plugin that integrates with BuddyPress, which now offers this feature.

    For the links to posts in the points logs, that is something that is planned to be added soon.

    3) Yes, will definitely be added in a future version.

    Plugin Author J.D. Grimes

    (@jdgrimes)

    The following code will change the avatar size once WordPoints 2.4.0 is released (in a few weeks):

    
    function my_custom_wordpoints_avatar_size_filter( $avatar_size ) {
        return 96;
    }
    add_filter( 'wordpoints_points_logs_table_avatar_size', 'my_custom_wordpoints_avatar_size_filter' );
    add_filter( 'wordpoints_points_top_users_table_avatar_size', 'my_custom_wordpoints_avatar_size_filter' );
    
    Thread Starter Anonymous User 15521305

    (@anonymized-15521305)

    Thank you so much for your support.

    Thread Starter Anonymous User 15521305

    (@anonymized-15521305)

    @jdgrimes

    Hello, when the update will be released : )

    Plugin Author J.D. Grimes

    (@jdgrimes)

    @topsan123 it will be a couple more weeks. Sorry for the delay, I found a couple of bugs that needed to be fixed.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Increase size of Avatar /unclickable’ is closed to new replies.