Hello,
I am pleased to inform you that an optimization of the FaceYourManga avatars generation process on forums that have activated an SSL certificate has been sent online. The goal is to make these HTTPS forums compatible with the FaceYourManga generator which is still HTTP.
This optimization is natively included in the core profile_add_body template of all Forumotion forums regardless of the forum version. Administrators who have not customized this template are not affected by the changes that follow.
As for the administrators who customized the profile_add_body template AND activated an SSL certificate on their forum (forum url in HTTPS), they must make the following changes manually to this template in order to avoid the appearance of a security warning When using the FaceYourManga avatar generator.
Regards,
The Forumactif Team
In the template profile_add_body
In the template profile_add_body
In the template profile_add_body
In the template profile_add_body
I am pleased to inform you that an optimization of the FaceYourManga avatars generation process on forums that have activated an SSL certificate has been sent online. The goal is to make these HTTPS forums compatible with the FaceYourManga generator which is still HTTP.
This optimization is natively included in the core profile_add_body template of all Forumotion forums regardless of the forum version. Administrators who have not customized this template are not affected by the changes that follow.
As for the administrators who customized the profile_add_body template AND activated an SSL certificate on their forum (forum url in HTTPS), they must make the following changes manually to this template in order to avoid the appearance of a security warning When using the FaceYourManga avatar generator.
Regards,
The Forumactif Team
phpBB2 Version :
In the template profile_add_body
- Add after the following code:
- Code:
<!-- END switch_avatar_faceyourmanga -->
- The following additional code:
- Code:
<!-- BEGIN switch_avatar_faceyourmanga_alternate -->
<tr>
<td class="row1"><span class="gen">{L_FACEYOURMANGA_BUTTON_LABEL}</span></td>
<td class="row2">
<img src="{L_FACEYOURMANGA_LINK_IMG}" onclick="{switch_avatar_block.switch_avatar_faceyourmanga_alternate.ONCLICK_FYM}" class="fontbutton" id="fym_banner" style="cursor:pointer;cursor:hand;" />
<br />
<input type="button" onclick="{switch_avatar_block.switch_avatar_faceyourmanga_alternate.ONCLICK_FYM}" value="{L_FACEYOURMANGA_BUTTON_LABEL}" class="button" />
</td>
</tr>
<!-- END switch_avatar_faceyourmanga_alternate -->
phpBB3 Version :
In the template profile_add_body
- Add after the following code:
- Code:
<!-- END switch_avatar_faceyourmanga -->
- The following additional code:
- Code:
<!-- BEGIN switch_avatar_faceyourmanga_alternate -->
<dl>
<dt><label>{L_FACEYOURMANGA_BUTTON_LABEL}</label></dt>
<dd>
<img src="{L_FACEYOURMANGA_LINK_IMG}" onclick="{switch_avatar_block.switch_avatar_faceyourmanga_alternate.ONCLICK_FYM}" id="fym_banner" style="cursor:pointer;cursor:hand;" />
<br />
<input type="button" onclick="{switch_avatar_block.switch_avatar_faceyourmanga_alternate.ONCLICK_FYM}" value="{L_FACEYOURMANGA_BUTTON_LABEL}" class="button button1" />
</dd>
</dl>
<!-- END switch_avatar_faceyourmanga_alternate -->
punBB Version :
In the template profile_add_body
- Add after the following code:
- Code:
<!-- END switch_avatar_faceyourmanga -->
- The following additional code:
- Code:
<!-- BEGIN switch_avatar_faceyourmanga_alternate -->
<dl>
<dt>{L_FACEYOURMANGA_BUTTON_LABEL}</dt>
<dd>
<img src="{L_FACEYOURMANGA_LINK_IMG}" onclick="{switch_avatar_block.switch_avatar_faceyourmanga_alternate.ONCLICK_FYM}" id="fym_banner" style="cursor:pointer;cursor:hand;" />
<br />
<input type="button" onclick="{switch_avatar_block.switch_avatar_faceyourmanga_alternate.ONCLICK_FYM}" value="{L_FACEYOURMANGA_BUTTON_LABEL}" class="button button1" />
</dd>
</dl>
<!-- END switch_avatar_faceyourmanga_alternate -->
Invision Version :
In the template profile_add_body
- Add after the following code:
- Code:
<!-- END switch_avatar_faceyourmanga -->
- The following additional code:
- Code:
<!-- BEGIN switch_avatar_faceyourmanga_alternate -->
<dl>
<dt><label>{L_FACEYOURMANGA_BUTTON_LABEL}</label></dt>
<dd>
<img src="{L_FACEYOURMANGA_LINK_IMG}" onclick="{switch_avatar_block.switch_avatar_faceyourmanga_alternate.ONCLICK_FYM}" id="fym_banner" style="cursor:pointer;cursor:hand;" />
<br /><br />
<input type="button" onclick="{switch_avatar_block.switch_avatar_faceyourmanga_alternate.ONCLICK_FYM}" value="{L_FACEYOURMANGA_BUTTON_LABEL}" class="button button1" />
</dd>
</dl>
<!-- END switch_avatar_faceyourmanga_alternate -->