Hi, I'd like to move the Digital Point Social Bar below Xenforo breadcrumb. Can you give me instructions please? Thanks.
There isn't an option to do it if that's what you mean? It would require you to modify the template modification (or create your own) that injects it into the template.
This is what I'd like to to do. I guess the PAGE_CONTAINER is what it must to be modified. Can you tell me what changes I have to do please?
There isn't a setting for it. You would simply need to go in and rearrange things in your PAGE_CONTAINER template (for example move the breadcrumb portion of it higher up in the template).
"page_container_breadcrumb_top" is already at the highest place in the "<!-- main content area -->" section, so this solution does not work. Anything else that may work?
OK, here is another way that worked for me... Open "addon-dpSocialBar.xml" Change <find><![CDATA[<!-- main content area -->]]></find> <replace><![CDATA[<!-- main content area --> <xen:callback class="DigitalPointSocialBar_Callback_SocialBar" method="renderSocialBar" />]]></replace> PHP: With <find><![CDATA[<xen:include template="ad_below_top_breadcrumb" />]]></find> <replace><![CDATA[<xen:include template="ad_below_top_breadcrumb" /> <xen:callback class="DigitalPointSocialBar_Callback_SocialBar" method="renderSocialBar" />]]></replace> PHP: Reinstall add on. Done. This is not the best way to go because you have to modify the addon-dpSocialBar xml before every update, but at least it worked without modifications in the PAGE_CONTAINER template.