Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author andreyonadam

    (@andreyonadam)

    Hello, if you would like to do so for the card handler you can modify line 89 in includes\cardhandler.php. Change

    $ba_html .= get_userdata($post->post_author)->user_firstname;

    to

    $ba_html .= '<a herf="'. get_userdata($post->post_author)->user_url. '">'. get_userdata($post->post_author)->user_firstname . '</a>';

    You can also change the similar line in cardlink.php and shortcodehandler.php.

    Plugin Author andreyonadam

    (@andreyonadam)

    You can also change the similar line in cardlink.php and shortcodehandler.php from

    $ba_html .= get_userdata($ba_id)->user_firstname;

    to

    $ba_html .= '<a herf="'. get_userdata($ba_id)->user_url. '">'. get_userdata($post->post_author)->user_firstname . '</a>';

    Thread Starter jibril84

    (@jibril84)

    Thank you! After some attempts I’ve managed also to get the author’s profile page ??

    $ba_html .= '<a href="'. get_author_posts_url($ba_id, $ba_id->user_nicename). '">'. get_userdata($ba_id)->user_firstname . '</a>';

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘link to authors' profile page and website’ is closed to new replies.