I am sorry for my English. I think I am not able to tell you problem clearly.
Firstly, problem is only occurs when "Multiple Account Info" addon is enable. When it is disabled, everything is ok.
Also when I disable "notlar" addon, problem is still persist.
And I wrote that "When I look at source code of page, I saw that there are "." Yes I know there are 2 places the tab and content.
But if you check my code that I sent before. There are 2 "multiaccountinfo
content. " and also plus tab
I have talked about member_view template
<xen:if is="{$warningCount}">
<li id="warnings" class="profileContent" data-loadUrl="{xen:link
members/warnings, $user}">
{xenhrase loading}...
<noscript><a href="{xen:link
members/warnings, $user}">{xenhrase view}</a></noscript>
</li>
</xen:if>
and at installation file
<find><![CDATA[#xen:link members/warnings.*</xen:if>#UUs]]></find>
I thought that there are 2
members/warnings , because of this find and replace code find 2 times and generate same code twice.
So, I have changed installation code's second member_view part from
Code:
<modification template="member_view" modification_key="wmt_smai_mv_002" description="Add new content for SMAI" execution_order="5" enabled="1" action="str_replace">
<find><![CDATA[<noscript><a href="{xen:link members/warnings, $user}">{xen:phrase view}</a></noscript>
</li>
</xen:if>]]></find>
<replace><![CDATA[$0
<xen:if is="(({$visitor.user_id} == {$user.user_id}) AND {$visitor.permissions.wmtStickyMultiAccInfo.wmtSmaiSeeOwnProfileInfo}) OR {$visitor.permissions.wmtStickyMultiAccInfo.wmtSmaiSeeAllProfileInfo}">
<li id="multiaccinfo" class="profileContent" data-loadUrl="{xen:link members/multiaccinfo, $user}">
{xen:phrase loading}...
<noscript><a href="{xen:link members/multiaccinfo, $user}">{xen:phrase view}</a></noscript>
</li>
</xen:if>]]></replace>
</modification>
to
Code:
<modification template="member_view" modification_key="wmt_smai_mv_002" description="Add new content for SMAI" execution_order="5" enabled="1" action="str_replace">
<find><![CDATA[<xen:if is="{$warningCount}">
<li id="warnings" class="profileContent" data-loadUrl="{xen:link members/warnings, $user}">
{xen:phrase loading}...
<noscript><a href="{xen:link members/warnings, $user}">{xen:phrase view}</a></noscript>
</li>
</xen:if>]]></find>
<replace><![CDATA[$0
<xen:if is="(({$visitor.user_id} == {$user.user_id}) AND {$visitor.permissions.wmtStickyMultiAccInfo.wmtSmaiSeeOwnProfileInfo}) OR {$visitor.permissions.wmtStickyMultiAccInfo.wmtSmaiSeeAllProfileInfo}">
<li id="multiaccinfo" class="profileContent" data-loadUrl="{xen:link members/multiaccinfo, $user}">
{xen:phrase loading}...
<noscript><a href="{xen:link members/multiaccinfo, $user}">{xen:phrase view}</a></noscript>
</li>
</xen:if>]]></replace>
</modification>
I get this code from your 1.0.3 version. Now everything is ok.