Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
AmericanRev2 Posted December 30, 2019 Posted December 30, 2019 How can i link the users content count on posts to their content and how to put reputation and posts on the same line instead for stacked?
Adriano Faria Posted December 31, 2019 Posted December 31, 2019 This is based in the default theme. Open the forums -> front -> topics -> postContainter template. Find: {{if $comment->author()->member_id}} <li>{template="reputationBadge" group="global" app="core" params="$comment->author()"}</li> <li class='ipsType_light'>{lang="member_post_count" pluralize="$comment->author()->member_posts"}</li> {{if $comment->author()->reputationImage()}} <li class='ipsPad_half'> <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''> </li> {{endif}} {template="customFieldsDisplay" group="global" app="core" params="$comment->author()"} {{endif}} Change to: {{if $comment->author()->member_id}} <ul class='ipsList_inline ipsClearfix'> <li>{template="reputationBadge" group="global" app="core" params="$comment->author()"}</li> <li class='ipsType_light'><a href="{url="app=core&module=members&controller=profile&do=content&id={$comment->author()->member_id}" base="front" seoTemplate="profile_content" seoTitle="$comment->author()->members_seo_name"}">{lang="member_post_count" pluralize="$comment->author()->member_posts"}</a></li> {{if $comment->author()->reputationImage()}} <li class='ipsPad_half'> <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''> </li> {{endif}} </ul> {template="customFieldsDisplay" group="global" app="core" params="$comment->author()"} {{endif}}
AmericanRev2 Posted January 4, 2020 Author Posted January 4, 2020 Once again @Adriano Faria comes through for me THANK YOU! Jan-04-2020 13-02-31.mp4
Recommended Posts
Archived
This topic is now archived and is closed to further replies.