The person who helped me with the modx package said it had to be done like this: not adding the code changes for prosilver as they were already in the file that was added.
Anyway, for prosilver this is what the code changes are. In memberlist_view.html,
FIND
Code: Select all
<!-- IF RANK_IMG --><dd style="text-align: center;">{RANK_IMG}</dd><!-- ENDIF -->
Code: Select all
<!-- IF RANK2_TITLE --><dd style="text-align: center;">{RANK2_TITLE}</dd><!-- ENDIF -->
<!-- IF RANK2_IMG --><dd style="text-align: center;">{RANK2_IMG}</dd><!-- ENDIF -->
<!-- IF RANK3_TITLE --><dd style="text-align: center;">{RANK3_TITLE}</dd><!-- ENDIF -->
<!-- IF RANK3_IMG --><dd style="text-align: center;">{RANK3_IMG}</dd><!-- ENDIF -->
FIND
Code: Select all
<!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><dd>{postrow.RANK_TITLE}<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->{postrow.RANK_IMG}</dd><!-- ENDIF -->
Code: Select all
<!-- IF postrow.RANK2_TITLE or postrow.RANK2_IMG --><dd>{postrow.RANK2_TITLE}<!-- IF postrow.RANK2_TITLE and postrow.RANK2_IMG --><br /><!-- ENDIF -->{postrow.RANK2_IMG}</dd><!-- ENDIF -->
<!-- IF postrow.RANK3_TITLE or postrow.RANK3_IMG --><dd>{postrow.RANK3_TITLE}<!-- IF postrow.RANK3_TITLE and postrow.RANK3_IMG --><br /><!-- ENDIF -->{postrow.RANK3_IMG}</dd><!-- ENDIF -->