MyBB Community Forums

Full Version: [SOLVED] Accidentally deleted header_welcomeblock_member from The Cure
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i was editing the header_welcomeblock_member file in theme The Cure when I accidentally deleted the block of text. I had added a bit of text, saved it but when it went back to the post most of the text had gone!

Anyway, I thought (stupidly) that "revert to original" meant that it put that particular template back to what it was on install. It took the majority of text away and now the whole theme is broken.

where can I find the original template so I can just cut and paste it back in?

Sad

Thanks in advance

Donna
-x-
In case it helps: http://www.icklebits.co.uk/forum/
[SOLVED]

I created a new theme using the xml file. I then copied the code from the header_welcomeblock_member file of the newly uploaded...pasted that into my messed up one and ta-da its back!

Phew.
you have xml file of that theme ... search for <template name="header_welcomeblock_member"
the code within that template tag in between [CDATA[ AND ]></template> is your required code

similar to below code :
<div style="float: left; padding-left: 8px; padding-top: 2px;">
<strong>Welcome {$mybb->user['username']},</strong> &nbsp; <a href="{$mybb->settings['bburl']}/private.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/icons/pm.png" alt="" title="" class="icons-irt" /><strong>{$lang->welcome_pms}</strong></a> {$lang->welcome_pms_usage} &nbsp; <a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/icons/logout.png" alt="" title="" /><strong>{$lang->welcome_logout}</strong></a></div>

<div style="float: right; padding-right: 8px; padding-top: 2px;">
<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a> - 
<a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a> |
 <a href="{$mybb->settings['bburl']}/usercp.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/icons/ucp.png" alt="" title="" /><strong>{$lang->welcome_usercp}</strong></a>
{$modcplink}{$admincplink}
</div>
Thank you very much for that. Shy

I've made a note of it and bookmarked just in case (or should I say when Big Grin ) I do it again.

Thank you

Donna
-x-