• Resolved facinoroso

    (@facinoroso)


    Hi, congratulations on your plugin. How can I insert the link to the user’s site in the image of the user’s logo.
    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Dominik Schilling

    (@ocean90)

    WordPress Core Developer

    Hi @facinoroso, thanks!

    You can customize the template by copying rplus-wp-team-list.php into your theme folder.

    To add the link you have to replace the wp_team_list()->get_avatar( $user ) line with something like this:

    
    <?php
    printf(
        '<a href="%s">%s</a>',
        esc_url( $user->user_url ),
        wp_team_list()->get_avatar( $user )
    );
    ?>
    
    Thread Starter facinoroso

    (@facinoroso)

    Thank You, congratulations on your plugin and support!

    Thread Starter facinoroso

    (@facinoroso)

    The links work perfectly. Thank you.

    I have another problem. Occasionally, the page (where the shortcode for the team view is inserted) does not load the css I’ve set up. What can you depend on?
    From problems of compatibility with the theme EXTRA DIVI or with the updated version of WordPress? Do you know a way to solve?
    Thank you
    Greetings.

    Plugin Contributor Pascal Birchler

    (@swissspidy)

    Do you mean the CSS of the WP Team List plugin is sometimes loading? Or some other custom CSS you have added somewhere?

    As far as I know, the Divi theme does lots and lots of things not necessarily “the WordPress way”, so there can be incompatibilities.

    Try using a different theme to see if the bug persists. If not, it’s most likely a bug in the theme and you should ask their support for help.

    If it persists, we’re happy to have a look.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Link User Logo’ is closed to new replies.