The Grim Reaper Posted December 17, 2019 Share Posted December 17, 2019 (edited) 4.1.x to 4.3.x We go to forums - topics and select "postContainer" and then look for the following code: <li class='cAuthorPane_photo'> {template="userPhoto" app="core" group="global" params="$comment->author(), 'large', $comment->warningRef()"} </li> We will replace the above code with the following: <li class='cAuthorPane_photo'> {{if $comment->author()->pp_main_photo}} <span class='ipsUserPhoto ipsUserPhoto_variable'> <img src="{setting='base_url'}uploads/{$comment->author()->pp_main_photo}" /> </span> {{else}} <img src='{resource="default_photo.png" app="core" location="global"}' /> {{endif}} </li> Save then go to "costume.css" and add the following code: .cAuthorPane_photo img { max-width: 170px; width: auto; } 4.4.x We go to forums - topics and select "postContainer" and then look for the following code: <li class='cAuthorPane_photo'> {template="userPhoto" app="core" group="global" params="$comment->author(), 'large', $comment->warningRef()"} </li> We will replace the above code with the following: <li class='cAuthorPane_photo'> {{if $comment->author()->pp_main_photo AND $comment->author()->pp_thumb_photo}} <img src="{url="" base=""}/uploads/{$comment->author()->pp_main_photo}"> {{else}} <img src="{$comment->author()->photo}"> {{endif}} </li> Save then go to "costume.css" and add the following code: .cAuthorPane_photo img { max-width: 170px; width: auto; } This is an easy version of the tutorial made by @John , you just have to replace one code and adding another one in the custom.css Edited December 17, 2019 by sebastiancgames 3 Quote Link to comment Share on other sites More sharing options...
jhoancito Posted March 9, 2021 Share Posted March 9, 2021 On 17/12/2019 at 16:35, DiaboliK. said: 4.1.xa 4.3.x Vamos a foros - temas y seleccionamos " postContainer " y luego buscamos el siguiente código: Reemplazaremos el código anterior con el siguiente: Guarde, luego vaya a " costume.css " y agregue el siguiente código: 4.4.x Vamos a foros - temas y seleccionamos " postContainer " y luego buscamos el siguiente código: Reemplazaremos el código anterior con el siguiente: Guarde, luego vaya a " costume.css " y agregue el siguiente código: Esta es una versión sencilla del tutorial realizado por @John , solo tiene que reemplazar un código y agregar otro en el archivo custom.css You can make a guide for version 4.4.7 iso code does not grab me for my version and an error does not want to save Quote Link to comment Share on other sites More sharing options...
The Grim Reaper Posted March 12, 2021 Author Share Posted March 12, 2021 The 4.x tutorial is for all 4.x available versions, if you have custom plugin for postContainer this method will not work due to different codes. Quote Link to comment Share on other sites More sharing options...
jhoancito Posted March 12, 2021 Share Posted March 12, 2021 {{$idField = $comment::$databaseColumnId;}} {{$itemClassSafe = str_replace( '\\', '_', mb_substr( $comment::$itemClass, 4 ) );}} {{if $comment->isIgnored()}} <div class='ipsComment ipsComment_ignored ipsType_light' id='elIgnoreComment_{$comment->$idField}' data-ignoreCommentID='elComment_{$comment->$idField}' data-ignoreUserID='{$comment->author()->member_id}'> {lang="ignoring_content" sprintf="$comment->author()->name"} <a href='#elIgnoreComment_{$comment->$idField}_menu' data-ipsMenu data-ipsMenu-menuID='elIgnoreComment_{$comment->$idField}_menu' data-ipsMenu-appendTo='#elIgnoreComment_{$comment->$idField}' data-action="ignoreOptions" title='{lang="see_post_ignore_options"}' class='ipsType_blendLinks'>{lang="options"} <i class='fa fa-caret-down'></i></a> <ul class='ipsMenu ipsHide' id='elIgnoreComment_{$comment->$idField}_menu'> <li class='ipsMenu_item ipsJS_show' data-ipsMenuValue='showPost'><a href='#'>{lang="show_this_post"}</a></li> <li class='ipsMenu_sep ipsJS_show'><hr></li> <li class='ipsMenu_item' data-ipsMenuValue='stopIgnoring'><a href='{url="app=core&module=system&controller=ignore&do=remove&id={$comment->author()->member_id}" seoTemplate="ignore"}'>{lang="stop_ignoring_posts_by" sprintf="$comment->author()->name"}</a></li> <li class='ipsMenu_item'><a href='{url="app=core&module=system&controller=ignore" seoTemplate="ignore"}'>{lang="change_ignore_preferences"}</a></li> </ul> </div> {{endif}} <a id='comment-{$comment->$idField}'></a> <article {{if $comment->author()->hasHighlightedReplies()}}data-memberGroup="{$comment->author()->member_group_id}" {{endif}} id='elComment_{$comment->$idField}' class='cPost ipsBox {{if $otherClasses}}{$otherClasses}{{endif}} ipsComment {{if ( settings.reputation_highlight and $comment->reactionCount() >= settings.reputation_highlight and settings.reputation_enabled ) OR $comment->isFeatured()}}ipsComment_popular{{endif}} ipsComment_parent ipsClearfix ipsClear ipsColumns ipsColumns_noSpacing ipsColumns_collapsePhone {{if $comment->author()->hasHighlightedReplies()}}ipsComment_highlighted{{endif}}{{if $comment->isIgnored()}}ipsHide{{endif}} {{if $comment->hidden() OR $item->hidden() === -2}}ipsModerated{{endif}}'> {{if $item->isQuestion() and !$comment->new_topic}} {template="postRating" group="topics" app="forums" params="$item, $comment, $votes"} {{endif}} <div class='cAuthorPane cAuthorPane_mobile ipsResponsive_showPhone ipsResponsive_block'> <h3 class='ipsType_sectionHead cAuthorPane_author ipsResponsive_showPhone ipsResponsive_inlineBlock ipsType_break ipsType_blendLinks ipsTruncate ipsTruncate_line'> {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), $comment->author()->group['g_id']"} <span class='ipsResponsive_showPhone ipsResponsive_inline'> {template="reputationBadge" group="global" app="core" params="$comment->author()"}</span> </h3> <div class='cAuthorPane_photo'> {template="userPhoto" app="core" group="global" params="$comment->author(), 'large', $comment->warningRef()"} </div> </div> <aside class='ipsComment_author cAuthorPane ipsColumn ipsColumn_medium ipsResponsive_hidePhone'> <ul class='cAuthorPane_info ipsList_reset'> <div style="background: #1a191f; height: 53px; line-height: 53px; position: relative; margin: 0 auto; margin-top: -10px; margin-left: -10px; margin-right: -10px;">{{if $comment->author()->isOnline()}} <i class="ion-ios-pulse-strong" style="position: relative; display: inline-block; float: left; height: 53px; width: 60px; border-right: 4px solid #1d1d25 !important; font-size:21px; text-align: center; line-height: 53px; color: #56cf61;" aria-hidden="true"></i> {{else}} <i class="ion-ios-pulse-strong" style="position: relative; display: inline-block; float: left; height: 53px; width: 60px; border-right: 4px solid #1d1d25 !important; font-size:21px; text-align: center; line-height: 53px; color: #D64541;" aria-hidden="true"></i>{{endif}}<strong>{$comment->author()->link( $comment->warningRef() )|raw}</strong></div> {{if $comment->author()->member_title && $comment->author()->member_id}} <li style="background: #1a191f; height: 53px; line-height: 53px; position: relative; margin: 0 auto; margin-top: 0px; margin-right: auto; margin-left: auto; margin-top: 0px; margin-right: auto; margin-left: auto; margin-top: 5px;" class='ipsType_break'>{$comment->author()->member_title}</li> {{elseif $comment->author()->rank['title'] && $comment->author()->member_id}} <li class='ipsType_break'>{$comment->author()->rank['title']}</li> {{endif}} {{if $comment->author()->rank['image'] && $comment->author()->member_id}} <li>{$comment->author()->rank['image']|raw}</li> {{endif}} <li class='cAuthorPane_photo'> {{if $comment->author()->pp_main_photo}} <span class='ipsUserPhoto ipsUserPhoto_variable'> <img src="{setting='base_url'}uploads/{$comment->author()->pp_main_photo}" /> </span> {{else}} <img src='{resource="default_photo.png" app="core" location="global"}' /> {{endif}} <div class="bgsi sslr bgm"><div style="transform: rotate(180deg);" class="bgq"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-12 21 936 458"><path d="M100,33.494 800,33.494 900,250 800,466.506 100,466.506 0,250z" style="fill: url('#commonButtonBackgroundLeft'); fill-opacity: 0.71; stroke: url('#commonButtonBorderLeft'); stroke-opacity: 0.71; stroke-width: 27;"></path> <defs><linearGradient id="commonButtonBackgroundLeft" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="commonButtonBorderLeft" x1="40%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.11"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs> </svg></div> <div class="wer"><span class="svgrt"></span><span class="vbn"><!-- react-text: 111876 --><div style="height: 33px; width: 40px; background: rgba(29,29,37, 0.8); position: absolute; top: 0px; z-index: -1; left: 0; right: 0; margin: 0 auto;"></div>{expression="\IPS\Member\Group::load( $comment->author()->member_group_id )->formattedName" raw="true"}<!-- /react-text --></span></div><div class="tyu"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-12 21 936 458"><path d="M100,33.494 800,33.494 900,250 800,466.506 100,466.506 0,250z" style="fill: url('#commonButtonBackgroundRight'); fill-opacity: 0.71; stroke: url('#commonButtonBorderRight'); stroke-opacity: 0.71; stroke-width: 27;"></path><defs><linearGradient id="commonButtonBackgroundRight" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="commonButtonBorderRight" x1="40%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.11"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs></svg></div></div> <br> <!-- <div style="position:relative;margin:0 auto;"> <h3 class='ipsWidget_title ipsType_reset' style="padding: 10px; background: #1b1a20; display: inline-block; position: relative; margin-top: 15px; width: 47%;"> <div style="background: #1d1d25 !important; width: 40px; height: 45px; text-align: center; color: #005c97; line-height: 45px; display: inline-block; font-size: 26px; position: relative; float: left; margin-top: -2px; margin-left: -3px; margin-bottom: -2px;"><i class="ion-stats-bars" aria-hidden="true"></i></div> <div style="position: relative; display: inline-block; font-size: 11px !important; text-transform: uppercase !important; letter-spacing: 1px !important; color: #5d5c6a; font-weight: bold !important;float: right; font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important; top: 4px;"><a2 style="font-size:13px;color:#fff;">Posts</a2><br> {expression="$comment->author()->member_posts"} </div><div></div> </h3> <h3 class='ipsWidget_title ipsType_reset' style="padding: 10px; background: #1b1a20; position: relative; margin-top: 15px; display: inline-block; width: 47%;"> <div style="position: relative; display: inline-block; font-size: 11px !important; text-transform: uppercase !important; letter-spacing: 1px !important; color: #5d5c6a; font-weight: bold !important;float: left; font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important; top: 4px;"><a2 style="font-size:13px;color:#fff;">Topics</a2><br> {expression="$comment->author()->member_posts"} </div><div style="background: #1d1d25 !important; width: 40px; height: 45px; text-align: center; color: #005c97; line-height: 45px; display: inline-block; font-size: 26px; position: relative; float: right; margin-top: -2px; margin-right: -3px; margin-bottom: -2px;"><i class="ion-stats-bars" aria-hidden="true"></i></div><div></div> </h3> </div>--> <div style="background: #1a191f;margin-top:15px;margin-right: -10px; margin-left: -10px;padding-bottom:5px;"> <div style="background: #1d1d25 !important; margin-left: 5px;margin-bottom: 5px; margin-right: 5px; padding: 5px; border-top: 5px solid #1a191f;padding-bottom:14px;"> <div style="position: relative; display: inline-block; font-size: 11px !important; text-transform: uppercase !important; letter-spacing: 1px !important; color: #5d5c6a; font-weight: bold !important; font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important; top: 4px;text-align: left;"><a2 style="font-size:13px;color:#fff;">ESTADÍSTICAS DE MIEMBROS</a2></div><div></div></div> <div style="background: #1d1d25 !important; position:relative;display:inline-block; width: 30%;margin-right: 2px; text-align: center;overflow: hidden;"> <div style="position: relative; margin: 0 auto; margin-top: 0px;display: inline-block; margin-bottom: 0px; margin-top: 15px; margin-bottom: 25px; right: 0px; width: 50px;top: -5px; height: 50px;" class="icon-svg2"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-15 18 545 464"> <path d="M125,33.494 375,33.494 500,250 375,466.506 125,466.506 0,250z" style="fill: url('#hex2'); stroke: url('#hex3'); stroke-width: 20;"></path> <defs><linearGradient id="hex2" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="hex3" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.15"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs> <i style="font-size: 21px; position: relative; top: -34px;color:#005c97; left: 0px;" class="ion-stats-bars" aria-hidden="true"></i> <div style="width: 40px !important; margin-top: 0; position: relative; top: -10px; min-width: 40px !important;" class="bgsi sslr bgm"><div style="transform: rotate(180deg);" class="bgq"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-12 21 936 458"><path d="M100,33.494 800,33.494 900,250 800,466.506 100,466.506 0,250z" style="fill: url('#BackgroundLeft'); fill-opacity: 0.71; stroke: url('#BorderLeft'); stroke-opacity: 0.71; stroke-width: 27;"></path> <defs><linearGradient id="BackgroundLeft" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="BorderLeft" x1="40%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.11"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs> </svg></div> <div class="wer" style="width: 40px; text-align: center; left: -19px;"><span class="vbn">{expression="$comment->author()->member_posts" raw="true"}</span></div><div class="tyu"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-12 21 936 458"><path d="M100,33.494 800,33.494 900,250 800,466.506 100,466.506 0,250z" style="fill: url('#BackgroundRight'); fill-opacity: 0.71; stroke: url('#BorderRight'); stroke-opacity: 0.71; stroke-width: 27;"></path><defs><linearGradient id="BackgroundRight" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="BorderRight" x1="40%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.11"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs></svg></div></div> </svg></div></div> <div style="background: #1d1d25 !important; width: 30%;margin-right: 2px;overflow: hidden; text-align: center;position:relative;display:inline-block;"> <div style="position: relative; margin: 0 auto;display: inline-block; margin-top: 0px; margin-bottom: 0px; margin-top: 15px; margin-bottom: 25px; right: 0px; width: 50px;top: -5px; height: 50px;" class="icon-svg2"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-15 18 545 464"> <path d="M125,33.494 375,33.494 500,250 375,466.506 125,466.506 0,250z" style="fill: url('#hex2'); stroke: url('#hex3'); stroke-width: 20;"></path> <defs><linearGradient id="hex2" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="hex3" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.15"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs> <i style="font-size: 21px; position: relative; top: -34px;color:#005c97; left: 0px;" class="ion-thumbsup" aria-hidden="true"></i> <div style="width: 40px !important; margin-top: 0; position: relative; top: -10px; min-width: 40px !important;" class="bgsi sslr bgm"><div style="transform: rotate(180deg);" class="bgq"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-12 21 936 458"><path d="M100,33.494 800,33.494 900,250 800,466.506 100,466.506 0,250z" style="fill: url('#BackgroundLeft'); fill-opacity: 0.71; stroke: url('#BorderLeft'); stroke-opacity: 0.71; stroke-width: 27;"></path> <defs><linearGradient id="BackgroundLeft" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="BorderLeft" x1="40%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.11"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs> </svg></div> <div class="wer" style="width: 40px; text-align: center; left: -19px;"><span class="vbn">{$comment->author()->pp_reputation_points}</span></div><div class="tyu"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-12 21 936 458"><path d="M100,33.494 800,33.494 900,250 800,466.506 100,466.506 0,250z" style="fill: url('#BackgroundRight'); fill-opacity: 0.71; stroke: url('#BorderRight'); stroke-opacity: 0.71; stroke-width: 27;"></path><defs><linearGradient id="BackgroundRight" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="BorderRight" x1="40%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.11"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs></svg></div></div> </svg></div></div> <div style="background: #1d1d25 !important; position:relative;display:inline-block; width: 30%; text-align: center;overflow: hidden;"> <div style="position: relative; margin: 0 auto;display: inline-block; margin-top: 0px; margin-bottom: 0px; margin-top: 15px; margin-bottom: 25px; right: 0px; width: 50px;top: -5px; height: 50px;" class="icon-svg2"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-15 18 545 464"> <path d="M125,33.494 375,33.494 500,250 375,466.506 125,466.506 0,250z" style="fill: url('#hex2'); stroke: url('#hex3'); stroke-width: 20;"></path> <defs><linearGradient id="hex2" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="hex3" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.15"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs> <i style="font-size: 21px; position: relative; top: -34px;color:#005c97; left: 0px;" class="ion-alert-circled" aria-hidden="true"></i> <div style="width: 40px !important; margin-top: 0; position: relative; top: -10px; min-width: 40px !important;" class="bgsi sslr bgm"><div style="transform: rotate(180deg);" class="bgq"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-12 21 936 458"><path d="M100,33.494 800,33.494 900,250 800,466.506 100,466.506 0,250z" style="fill: url('#BackgroundLeft'); fill-opacity: 0.71; stroke: url('#BorderLeft'); stroke-opacity: 0.71; stroke-width: 27;"></path> <defs><linearGradient id="BackgroundLeft" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="BorderLeft" x1="40%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.11"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs> </svg></div> <div class="wer" style="width: 40px; text-align: center; left: -19px;"><span class="vbn">{$comment->author()->warn_level}</span></div><div class="tyu"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="-12 21 936 458"><path d="M100,33.494 800,33.494 900,250 800,466.506 100,466.506 0,250z" style="fill: url('#BackgroundRight'); fill-opacity: 0.71; stroke: url('#BorderRight'); stroke-opacity: 0.71; stroke-width: 27;"></path><defs><linearGradient id="BackgroundRight" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0"></stop> <stop offset="100%" stop-color="#363795" stop-opacity="0.2"></stop> </linearGradient> <linearGradient id="BorderRight" x1="40%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#363795" stop-opacity="0.11"></stop> <stop offset="100%" stop-color="#005c97"></stop></linearGradient> </defs></svg></div></div> </svg></div></div> <div style="height: 40px; background: #1d1d25 !important; margin-left: 5px; position: relative; margin-right: 5px; text-align:center;line-height:40px;font-size: 13px; color: #fff; text-transform: uppercase !important; letter-spacing: 1px !important; font-weight: bold !important; font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;">Premios personalizados</div> <div style="padding-top:10px; padding-bottom:10px; background: #1d1d25 !important; margin-left: 5px; margin-top:5px; position: relative; margin-right: 5px; text-align:center;font-size: 9px; color: #fff; text-transform: uppercase !important; letter-spacing: 1px !important; font-weight: bold !important; font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;">Este miembro no tiene ningún premio.</div> </div> <h3 class='ipsType_sectionHead cAuthorPane_author ipsType_blendLinks ipsType_break'> <span class='ipsResponsive_showPhone ipsResponsive_inline'> {template="reputationBadge" group="global" app="core" params="$comment->author()"}</span></h3> {{if \IPS\Member\Group::load( $comment->author()->member_group_id )->g_icon }} <li><img src='{file="$comment->author()->group['g_icon']" extension="core_Theme"}' alt='' class='cAuthorGroupIcon'></li> {{endif}} {{if $comment->author()->member_id}} {template="customFieldsDisplay" group="global" app="core" params="$comment->author()"} {{endif}} </ul> </aside> <div class='ipsColumn ipsColumn_fluid'> {template="post" group="topics" app="forums" params="$item, $comment, $item::$formLangPrefix . 'comment', $item::$application, $item::$module, $itemClassSafe"} </div> </article> I don't have anything personalized to me, I get another way, I can't edit, I get an error, I haven't touched anything, I left you like my code for my theme. Quote Link to comment Share on other sites More sharing options...
LawrenceR2 Posted October 14, 2021 Share Posted October 14, 2021 Any solution to adapt in version 4.6? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.