Add content to account.php
I have been messing around with a few extensions in an effort to figure out a way to display information in the account page... to the right of the original information just as the ip map does and other extensions... does anyone know of a way this can be done right now I was trying an echo but thats about as much php as i know...
0
This discussion has been closed.
Comments
if ($Context->SelfUrl == 'account.php' && ForceIncomingString('PostBackAction', '') == '') { $Page->AddRenderControl($Context->ObjectFactory->NewContextObject($Context, 'MyControlName'), $Configuration['CONTROL_POSITION_BODY_ITEM']); }
(Substituting your Control subclass's name for 'MyControlName', of course).